-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy path.arclint
70 lines (70 loc) · 1.66 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"exclude": [
"(^external_libs\/)",
"(\\.xfig)",
"(\\.eps)"
],
"linters": {
"Text linter - source files": {
"text.max-line-length": 125,
"type": "text",
"severity": {
"6": "disabled",
"5": "disabled"
},
"include":[
"(\\.c$)",
"(\\.h$)"
]
},
"Text linter - Makefiles": {
"text.max-line-length": 125,
"type": "text",
"severity": {
"5": "disabled",
"6": "disabled",
"3": "advice",
"2": "disabled"
},
"include":[
"(Makefile$)",
"(\\.mk$)"
]
},
"Text linter - other files": {
"text.max-line-length": 125,
"type": "text",
"severity": {
"6": "disabled",
"5": "disabled",
"3": "advice"
},
"exclude": [
"(\\.c$)",
"(\\.h$)",
"(\\.mk$)",
"(Makefile$)"
]
},
"Static C++ analyser": {
"type": "cppcheck",
"include": [
"(\\.cc$)",
"(\\.cpp)",
"(\\.hh$)"
],
"flags": [
"inline-suppr"
]
},
"Merge-Conflicts": {
"type": "merge-conflict"
},
"Filename Checks": {
"type": "filename"
},
"File Permissions": {
"type": "chmod"
}
}
}