mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-02-22 14:38:29 +05:00
Update .glualint.json
New linting rules
This commit is contained in:
parent
537f1e94c9
commit
0adf75a12b
1 changed files with 22 additions and 11 deletions
|
@ -6,30 +6,41 @@
|
||||||
"lint_trailingWhitespace": true,
|
"lint_trailingWhitespace": true,
|
||||||
"lint_whitespaceStyle": true,
|
"lint_whitespaceStyle": true,
|
||||||
"lint_beginnerMistakes": true,
|
"lint_beginnerMistakes": true,
|
||||||
"lint_emptyBlocks": false,
|
"lint_emptyBlocks": true,
|
||||||
"lint_shadowing": false,
|
"lint_shadowing": false,
|
||||||
"lint_gotos": true,
|
"lint_gotos": true,
|
||||||
|
"lint_goto_identifier": true,
|
||||||
"lint_doubleNegations": true,
|
"lint_doubleNegations": true,
|
||||||
"lint_redundantIfStatements": false,
|
"lint_redundantIfStatements": true,
|
||||||
"lint_redundantParentheses": true,
|
"lint_redundantParentheses": true,
|
||||||
"lint_duplicateTableKeys": true,
|
"lint_duplicateTableKeys": true,
|
||||||
"lint_profanity": false,
|
"lint_profanity": true,
|
||||||
"lint_unusedVars": true,
|
"lint_unusedVars": true,
|
||||||
"lint_unusedParameters": false,
|
"lint_unusedParameters": false,
|
||||||
"lint_unusedLoopVars": false,
|
"lint_unusedLoopVars": true,
|
||||||
|
"lint_ignoreFiles": ["C:\\Temp\\glua-enchanced\\**.lua"],
|
||||||
"lint_inconsistentVariableStyle": false,
|
"lint_inconsistentVariableStyle": false,
|
||||||
"lint_ignoreFiles": [],
|
"lint_spaceBetweenParens": true,
|
||||||
|
"lint_spaceBetweenBrackets": true,
|
||||||
|
"lint_spaceBetweenBraces": true,
|
||||||
|
"lint_spaceBeforeComma": false,
|
||||||
|
"lint_spaceAfterComma": true,
|
||||||
|
"lint_maxLineLength": 0,
|
||||||
|
|
||||||
"prettyprint_spaceAfterParens": false,
|
"prettyprint_spaceBetweenParens": false,
|
||||||
"prettyprint_spaceAfterBrackets": false,
|
"prettyprint_spaceBetweenBrackets": false,
|
||||||
"prettyprint_spaceAfterBraces": false,
|
"prettyprint_spaceBetweenBraces": false,
|
||||||
"prettyprint_spaceEmptyBrackets": true,
|
"prettyprint_spaceEmptyParens": false,
|
||||||
|
"prettyprint_spaceEmptyBraces": false,
|
||||||
"prettyprint_spaceAfterLabel": false,
|
"prettyprint_spaceAfterLabel": false,
|
||||||
"prettyprint_spaceBeforeComma": false,
|
"prettyprint_spaceBeforeComma": false,
|
||||||
"prettyprint_spaceAfterComma": true,
|
"prettyprint_spaceAfterComma": true,
|
||||||
"prettyprint_semicolons": false,
|
"prettyprint_semicolons": false,
|
||||||
"prettyprint_cStyle": false,
|
"prettyprint_cStyle": false,
|
||||||
"prettyprint_rejectInvalidCode": false,
|
"prettyprint_removeRedundantParens": true,
|
||||||
|
"prettyprint_minimizeParens": true,
|
||||||
|
"prettyprint_assumeOperatorAssociativity": true,
|
||||||
"prettyprint_indentation": "\t",
|
"prettyprint_indentation": "\t",
|
||||||
|
|
||||||
"log_format": "auto"
|
"log_format": "auto"
|
||||||
}
|
}
|
Loading…
Reference in a new issue