forked from TheFoundryVisionmongers/KatanaUsdPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.arclint
106 lines (106 loc) · 2.87 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"linters": {
"chmod": {
"type": "chmod"
},
"filename": {
"type": "filename"
},
"cpp-cpplint": {
"type": "cpplint",
"bin": ["../../Resources/DevTools/bin/cpplint", "cpplint"],
"include": ["(\\.(c|h|cpp)$)"],
"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/line_length": "disabled",
"whitespace/newline": "disabled"
}
},
"json": {
"type": "json",
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"]
},
"merge-conflict": {
"type": "merge-conflict"
},
"python-pylint": {
"type": "pylint",
"bin": ["../../Resources/DevTools/bin/pylint", "pylint"],
"include": ["(\\.py$)"],
"exclude": ["((FnAddDependency|SCons).*\\.py$)"],
"pylint.config": "../../Resources/DevTools/pylintrc"
},
"python-pylint-scons": {
"type": "pylint",
"bin": ["../../Resources/DevTools/bin/pylint", "pylint"],
"include": ["((FnAddDependency|SCons).*\\.py$)"],
"pylint.config": "../../Resources/DevTools/pylintrc",
"flags": [
"--disable=bad-indentation,bad-continuation",
"--additional-builtins=env,ARGUMENTS,Action,Builder,Copy,Dir,Exit,File,Flatten,GetOption,Import,Return,SConscript,Value"
]
},
"spelling": {
"type": "spelling",
"spelling.dictionaries": [
"../../Resources/DevTools/phabricator/spelling.json"
]
},
"text": {
"type": "text",
"exclude": [
"(CMakeLists\\.txt$|\\.cmake$)",
"(\\.py$)",
"(\\.(xml|xsd|qrc|args)$)",
"(\\.(conf|ini)$)"
],
"severity": {
"2": "warning",
"4": "autofix",
"5": "warning",
"10": "warning"
}
},
"text-long-lines": {
"type": "text",
"include": [
"(CMakeLists\\.txt$|\\.cmake$)",
"((FnAddDependency|SCons).*\\.py$)",
"(\\.(xml|xsd|qrc|args)$)",
"(\\.(conf|ini)$)"
],
"text.max-line-length": 120,
"severity": {
"2": "warning",
"4": "autofix",
"5": "warning",
"10": "warning"
}
},
"text-python": {
"type": "text",
"include": ["(\\.py$)"],
"exclude": ["((FnAddDependency|SCons).*\\.py$)"],
"text.max-line-length": 79,
"severity": {
"2": "warning",
"4": "autofix",
"5": "warning",
"10": "warning"
}
},
"xml": {
"type": "xml",
"include": ["(\\.(xml|xsd|qrc|args)$)"]
}
}
}