forked from todogroup/repolinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.js
26 lines (25 loc) · 1.25 KB
/
rules.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2017 TODO Group. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
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'),
'any-file-contents': require('./any-file-contents'),
'file-or-directory-existence': require('./file-or-directory-existence')
}