-
Notifications
You must be signed in to change notification settings - Fork 19
/
.arclint
93 lines (93 loc) · 2.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"exclude": ["(\\.usda$)"],
"linters": {
"chmod": {
"type": "chmod"
},
"filename": {
"type": "filename"
},
"clang-format": {
"type": "katana-clang-format",
"include": ["(\\.(c|cc|cpp|h|hpp)$)"]
},
"cpp-cpplint": {
"type": "cpplint",
"bin": ["cpplint"],
"include": ["(\\.(c|h|cpp)$)"],
"flags": ["--linelength=100"],
"severity": {
"build/c++11": "disabled",
"build/header_guard": "disabled",
"build/include": "disabled",
"build/include_order": "disabled",
"legal/copyright": "disabled",
"runtime/indentation_namespace": "disabled",
"runtime/references": "disabled",
"whitespace/braces": "disabled",
"whitespace/end_of_line": "disabled",
"whitespace/indent": "disabled",
"whitespace/newline": "disabled"
}
},
"json": {
"type": "json",
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"]
},
"merge-conflict": {
"type": "merge-conflict"
},
"python-pylint": {
"type": "pylint",
"bin": ["../Katana/pylintwrapper.exe", "../Katana/pylintwrapper"],
"include": ["(\\.py$)"],
"pylint.config": "../../Resources/DevTools/pylintrc"
},
"spelling": {
"type": "spelling",
"spelling.dictionaries": [
"../../Resources/DevTools/phabricator/spelling.json"
]
},
"text": {
"type": "text",
"exclude": [
"(CMakeLists\\.txt$|\\.cmake$)",
"(\\.(c|h|cpp)$)",
"(\\.py$)",
"(\\.rst$)",
"(\\.sh$)",
"(\\.(xml|xsd|qrc|args)$)",
"(\\.(html|js)$)",
"(\\.(conf|ini)$)",
"(\\.(proto)$)"
],
"severity": {
"2": "warning",
"4": "autofix",
"5": "warning",
"10": "warning"
}
},
"text-long-lines": {
"type": "text",
"include": [
"(CMakeLists\\.txt$|\\.cmake$)",
"(\\.(xml|xsd|qrc|args)$)",
"(\\.(conf|ini)$)",
"(\\.(proto)$)"
],
"text.max-line-length": 120,
"severity": {
"2": "warning",
"4": "autofix",
"5": "warning",
"10": "warning"
}
},
"xml": {
"type": "xml",
"include": ["(\\.(xml|xsd|qrc|args)$)"]
}
}
}