-
Notifications
You must be signed in to change notification settings - Fork 0
/
repolinter.json
45 lines (45 loc) · 1.14 KB
/
repolinter.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "https://raw.githubusercontent.com/todogroup/repolinter/master/rulesets/schema.json",
"version": 2,
"axioms": {},
"rules": {
"readme-file-exists" : {
"level": "error",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["README*"]
}
}
},
"license-file-exists" : {
"level": "error",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["LICENSE*"]
}
}
},
"copyright-notice-present" : {
"level": "warning",
"rule": {
"type": "file-starts-with",
"options": {
"globsAll": ["**/*"],
"skip-binary-files": true,
"skip-paths-matching": {
"extensions": ["yaml","yml","md","json","xml","tpl","ipynb","pickle","joblib","properties"],
"patterns": ["\\.github"],
"flags": ""
},
"lineCount": 2,
"patterns": [
"Copyright \\([cC]\\) [12][90]\\d\\d(\\-[12][90]\\d\\d)? Oracle and/or its affiliates\\."
],
"succeed-on-non-exist": true
}
}
}
}
}