generated from oracle-devrel/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repolinter.json
57 lines (57 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"$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*"]
}
}
},
"disclaimer-present" : {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README*"],
"noCase": true,
"fail-on-non-existent": true,
"content": "ORACLE AND ITS AFFILIATES DO NOT PROVIDE ANY WARRANTY WHATSOEVER, EXPRESS OR IMPLIED, FOR ANY SOFTWARE, MATERIAL OR CONTENT OF ANY KIND"
}
}
},
"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
}
}
}
}
}