-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.arclint
More file actions
28 lines (28 loc) · 1005 Bytes
/
.arclint
File metadata and controls
28 lines (28 loc) · 1005 Bytes
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
{
"linters": {
"chmod": {
"type": "chmod"
},
"filename": {
"type": "filename"
},
"php": {
"type": "php",
"include": "(\\.php$)"
},
"phpcs": {
"type": "phpcs",
"phpcs.standard" : "PSR2",
"include": "(\\.php$)",
"severity.rules" : {
"(^PHPCS\\.E\\.PEAR\\.NamingConventions\\.ValidFunctionName\\.FunctionNoCapital)" : "disabled",
"(^PHPCS\\.E\\.PEAR\\.NamingConventions\\.ValidFunctionName\\.ScopeNotCamelCaps)" : "disabled",
"(^PHPCS\\.E\\.PSR1\\.Classes\\.ClassDeclaration\\.MissingNamespace)" : "disabled",
"(^PHPCS\\.E\\.PSR1\\.Methods\\.CamelCapsMethodName)" : "disabled",
"(^PHPCS\\.W\\.Generic\\.Files\\.LineLength\\.TooLong)" : "disabled",
"(^PHPCS\\.E\\.)" : "warning",
"(^PHPCS\\.W\\.)" : "advice"
}
}
}
}