forked from HorizonRDK/orb_slam3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.arclint
executable file
·40 lines (40 loc) · 1.31 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
{
"linters": {
"cpp": {
"type": "cpplint",
"severity": {
"build/c++11": "disabled",
"build/header_guard": "disabled",
"build/include_subdir": "disabled",
"build/include_order": "disabled",
"runtime/references": "disabled"
},
"flags": ["--extensions=h,h++,hh,hpp,hxx,cc,c++,cpp,cxx,C"],
"include": [],
"exclude": ["(\\.h$)", "(\\.h++)", "(\\.hh)","(\\.hpp$)", "(\\.hxx$)", "(\\.cc$)", "(\\.c++$)", "(\\.cpp$)", "(\\.cxx$)","(\\.C$)"]
},
"golang": {
"type": "golint",
"include": "(\\.go$)"
},
"python": {
"type": "pep8",
"include": [],
"exclude": "(\\.*$)"
},
"c": {
"type": "cpplint",
"severity": {
"build/c++11": "disabled",
"build/include_subdir": "disabled",
"runtime/references": "disabled",
"readability/casting": "disabled",
"build/header_guard": "disabled",
"runtime/references": "disabled"
},
"flags": ["--extensions=h,c"],
"include": [],
"exclude": ["(\\.h$)", "(\\.c$)"]
}
}
}