-
Notifications
You must be signed in to change notification settings - Fork 4
/
.arclint
33 lines (33 loc) · 928 Bytes
/
.arclint
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
{
"linters": {
"chmod": {
"type": "chmod"
},
"cpplint": {
"include": "(include/polli/.+\\.h$|include/pprof/.+\\.h$|lib/.+\\.cpp$)",
"type": "cpplint",
"severity": {
"runtime/int": "advice",
"whitespace/comments": "advice",
"whitespace/blank_line": "advice",
"legal/copyright": "disabled"
}
},
"filename": {
"exclude": "(www/experiments/.+|.*\\.jscop.*)",
"type": "filename"
},
"merge-conflict": {
"type": "merge-conflict"
},
"spelling": {
"exclude": "(configure|autoconf/.*)",
"type": "spelling"
},
"clang-tidy": {
"type": "script-and-regex",
"script-and-regex.script": "clang-tidy -fix",
"script-and-regex.regex": "/^(?P<file>.+):(?P<line>[0-9]+):(?P<char>[0-9]+): (?P<severity>warning|error|advice):(?P<message>.+) \\[(?P<name>.+)\\]$/m"
}
}
}