forked from todogroup/repolinter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update axioms, fixes and rules for documentation
documentation upgrade from 13.2.5 to 14.0.0 is a breaking change. Update the *require* solution does the trick.
- Loading branch information
Neil Zhao
committed
Oct 20, 2022
1 parent
75ad099
commit 7432dfe
Showing
5 changed files
with
40 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
// Copyright 2017 TODO Group. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. | ||
|
||
module.exports = ['licensee', 'linguist', 'packagers', 'contributor-count'] | ||
module.exports = { | ||
licensee: require('./licensee'), | ||
linguist: require('./linguist'), | ||
packagers: require('./packagers'), | ||
'contributor-count': require('./contributor-count') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
// Copyright 2017 TODO Group. All rights reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
module.exports = ['file-create', 'file-modify', 'file-remove'] | ||
module.exports = { | ||
'file-create': require('./file-create'), | ||
'file-modify': require('./file-modify'), | ||
'file-remove': require('./file-remove') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
// Copyright 2017 TODO Group. All rights reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
module.exports = [ | ||
'apache-notice', | ||
'best-practices-badge-present', | ||
'directory-existence', | ||
'file-contents', | ||
'file-existence', | ||
'file-hash', | ||
'file-hashes-not-exist', | ||
'file-no-broken-links', | ||
'file-not-contents', | ||
'file-not-exists', | ||
'file-starts-with', | ||
'file-type-exclusion', | ||
'git-grep-commits', | ||
'git-grep-log', | ||
'git-list-tree', | ||
'git-working-tree', | ||
'large-file', | ||
'license-detectable-by-licensee', | ||
'json-schema-passes' | ||
] | ||
module.exports = { | ||
'apache-notice': require('./apache-notice'), | ||
'best-practices-badge-present': require('./best-practices-badge-present'), | ||
'directory-existence': require('./directory-existence'), | ||
'file-contents': require('./file-contents'), | ||
'file-existence': require('./file-existence'), | ||
'file-hash': require('./file-hash'), | ||
'file-hashes-not-exist': require('./file-hashes-not-exist'), | ||
'file-no-broken-links': require('./file-no-broken-links'), | ||
'file-not-contents': require('./file-not-contents'), | ||
'file-not-exists': require('./file-not-exists'), | ||
'file-starts-with': require('./file-starts-with'), | ||
'file-type-exclusion': require('./file-type-exclusion'), | ||
'git-grep-commits': require('./git-grep-commits'), | ||
'git-grep-log': require('./git-grep-log'), | ||
'git-list-tree': require('./git-list-tree'), | ||
'git-working-tree': require('./git-working-tree'), | ||
'large-file': require('./large-file'), | ||
'license-detectable-by-licensee': require('./license-detectable-by-licensee'), | ||
'json-schema-passes': require('./json-schema-passes') | ||
} |