-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglualint.json
More file actions
40 lines (40 loc) · 1.36 KB
/
glualint.json
File metadata and controls
40 lines (40 loc) · 1.36 KB
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
{
"lint_maxScopeDepth": 7,
"lint_syntaxErrors": true,
"lint_syntaxInconsistencies": true,
"lint_deprecated": true,
"lint_trailingWhitespace": true,
"lint_whitespaceStyle": true,
"lint_beginnerMistakes": true,
"lint_emptyBlocks": true,
"lint_shadowing": false,
"lint_gotos": false,
"lint_goto_identifier": false,
"lint_doubleNegations": true,
"lint_redundantIfStatements": true,
"lint_redundantParentheses": true,
"lint_duplicateTableKeys": true,
"lint_profanity": true,
"lint_unusedVars": true,
"lint_unusedParameters": true,
"lint_unusedLoopVars": true,
"lint_inconsistentVariableStyle": false,
"lint_spaceBeforeComma": false,
"lint_spaceAfterComma": true,
"lint_spaceBetweenParens": false,
"lint_spaceBetweenBrackets": false,
"lint_spaceBetweenBraces": false,
"lint_ignoreFiles": [],
"prettyprint_indentation": " ",
"prettyprint_spaceAfterComma": true,
"prettyprint_spaceBeforeComma": false,
"prettyprint_spaceBetweenParens": false,
"prettyprint_spaceBetweenBrackets": false,
"prettyprint_spaceBetweenBraces": false,
"prettyprint_removeRedundantParens": true,
"prettyprint_minimizeParens": true,
"prettyprint_assumeOperatorAssociativity": true,
"prettyprint_semicolons": false,
"prettyprint_cStyle": false,
"log_format": "github"
}