forked from yugabyte/yugabyte-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.arclint
44 lines (44 loc) · 1.25 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
{
"exclude":"(\\.l$|Makefile$|src/yb/common/ql_type.h$|src/yb/ql/kwlist.h$)",
"linters": {
"text": {
"type": "text",
"text.max-line-length": 100,
"exclude": [
"(^thirdparty/thirdparty_src_checksums[.]txt$)",
"(^java/yb-client/src/test/java/org/yb/client/TestYBClient[.]java$)",
"(^cmake_modules/cotire[.]cmake$)",
"(^README[.]md$)"
]
},
"pycodestyle": {
"type": "pep8",
"include": "(\\.py$)",
"exclude": "(^thirdparty/|^[.]ycm_extra_conf[.]py$)",
"bin": "pycodestyle"
},
"googleccplint": {
"type": "googlecpplint",
"exclude": "(src/yb/ql/kwlist.h)",
"include": [
"(\\.cpp$)",
"(\\.cc$)",
"(\\.c$)",
"(\\.hpp$)",
"(\\.h$)"
],
"cpplint.header_guard_root_dir": "src",
"cpplint.max_line_length": 100,
"severity.rules": {
"(^readability/inheritance$)": "disabled",
"(^readability/todo$)": "disabled",
"(^runtime/string$)": "disabled",
"(^whitespace/parens$)": "disabled",
"(^whitespace/blank_line$)": "disabled",
"(^build/include_what_you_use$)": "disabled",
"(^build/c[+][+]11$)": "disabled",
"(.*)": "error"
}
}
}
}