1
0
mirror of https://github.com/IkarusHD/ICF-3.git synced 2025-03-04 03:03:12 -05:00
ICF-3/.glualint.json

50 lines
2.1 KiB
JSON
Raw Normal View History

2019-12-12 18:44:38 -05:00
{
"lint_maxScopeDepth": 10,
"lint_syntaxErrors": true,
"lint_syntaxInconsistencies": true,
"lint_deprecated": true,
"lint_trailingWhitespace": true,
2019-12-12 18:44:38 -05:00
"lint_whitespaceStyle": true,
"lint_beginnerMistakes": true,
"lint_emptyBlocks": true,
2022-08-12 05:00:29 -04:00
"lint_shadowing": false,
2019-12-12 18:44:38 -05:00
"lint_gotos": true,
2024-08-08 00:29:02 -04:00
"lint_goto_identifier": true,
2019-12-12 18:44:38 -05:00
"lint_doubleNegations": true,
"lint_redundantIfStatements": true,
"lint_redundantParentheses": true,
2019-12-12 18:44:38 -05:00
"lint_duplicateTableKeys": true,
"lint_profanity": true,
"lint_unusedVars": true,
"lint_unusedParameters": true,
"lint_unusedLoopVars": true,
2024-08-08 00:29:02 -04:00
"lint_inconsistentVariableStyle": false,
"lint_spaceBetweenParens": false,
"lint_spaceBetweenBrackets": false,
"lint_spaceBetweenBraces": false,
2023-11-26 20:56:50 -05:00
"lint_ignoreFiles": ["lua/entities/gmod_wire_expression2/core/custom/*.lua"],
2024-08-08 00:29:02 -04:00
"lint_spaceBeforeComma": false,
"lint_spaceAfterComma": true,
"lint_maxLineLength": 0,
2019-12-12 18:44:38 -05:00
2024-08-08 00:29:02 -04:00
"prettyprint_spaceBetweenParens": false,
"prettyprint_spaceBetweenBrackets": false,
"prettyprint_spaceBetweenBraces": false,
"prettyprint_spaceEmptyParens": false,
"prettyprint_spaceEmptyBraces": false,
2019-12-12 18:44:38 -05:00
"prettyprint_spaceAfterParens": false,
"prettyprint_spaceAfterBrackets": false,
"prettyprint_spaceAfterBraces": false,
"prettyprint_spaceAfterLabel": false,
2019-12-12 18:44:38 -05:00
"prettyprint_spaceBeforeComma": false,
"prettyprint_spaceAfterComma": true,
"prettyprint_semicolons": false,
"prettyprint_cStyle": false,
2024-08-08 00:29:02 -04:00
"prettyprint_removeRedundantParens": true,
"prettyprint_minimizeParens": false,
"prettyprint_assumeOperatorAssociativity": true,
"prettyprint_rejectInvalidCode": false,
"prettyprint_indentation": "\t",
"log_format": "auto"
2023-11-26 20:56:50 -05:00
}