-
Notifications
You must be signed in to change notification settings - Fork 6
/
hhast-lint.json
26 lines (26 loc) · 1000 Bytes
/
hhast-lint.json
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
{
"roots": [ "src/", "tests/" ],
"builtinLinters": "all",
"overrides": [
{
"patterns": ["*"],
"disabledLinters": [
"Facebook\\HHAST\\PreferSingleQuotedStringLiteralLinter",
"Facebook\\HHAST\\NoPHPEqualityLinter",
"Facebook\\HHAST\\MustUseBracesForControlFlowLinter",
"Facebook\\HHAST\\MustUseOverrideAttributeLinter",
"Facebook\\HHAST\\NoStringInterpolationLinter",
"Facebook\\HHAST\\NoWhitespaceAtEndOfLineLinter",
"Facebook\\HHAST\\NoElseifLinter",
"Facebook\\HHAST\\NewlineAtEndOfFileLinter",
"Facebook\\HHAST\\UnusedParameterLinter",
"Facebook\\HHAST\\UnusedUseClauseLinter",
"Facebook\\HHAST\\GroupUseStatementsLinter",
"Facebook\\HHAST\\UnusedVariableLinter",
"Facebook\\HHAST\\CamelCasedMethodsUnderscoredFunctionsLinter",
"Facebook\\HHAST\\UseStatementWithoutKindLinter",
"Facebook\\HHAST\\GroupUseStatementAlphabetizationLinter"
]
}
]
}