mirror of
https://github.com/Grocel/3D-Stream-Radio.git
synced 2025-03-04 03:03:07 -05:00

- Fixed Lua errors: - `lua/streamradio_core/tool.lua:480: attempt to call method 'GetMode' (a nil value)` - `lua/entities/base_streamradio.lua:486: attempt to index upvalue 'LIBUtil' (a nil value)` - Fixed global scope pollution - Some code clean up and new glualint config - Added a new GUI skin preset called "Stream Original"
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"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": true,
|
|
"lint_goto_identifier": true,
|
|
"lint_doubleNegations": true,
|
|
"lint_redundantIfStatements": false,
|
|
"lint_redundantParentheses": true,
|
|
"lint_duplicateTableKeys": true,
|
|
"lint_profanity": true,
|
|
"lint_unusedVars": true,
|
|
"lint_unusedParameters": false,
|
|
"lint_unusedLoopVars": false,
|
|
"lint_inconsistentVariableStyle": false,
|
|
"lint_spaceBetweenParens": false,
|
|
"lint_spaceBetweenBrackets": false,
|
|
"lint_spaceBetweenBraces": false,
|
|
"lint_ignoreFiles": [
|
|
"lua/streamradio_core/external/*.lua"
|
|
],
|
|
"lint_spaceBeforeComma": false,
|
|
"lint_spaceAfterComma": true,
|
|
"lint_maxLineLength": 0,
|
|
|
|
"prettyprint_spaceBetweenParens": false,
|
|
"prettyprint_spaceBetweenBrackets": false,
|
|
"prettyprint_spaceBetweenBraces": false,
|
|
"prettyprint_spaceEmptyParens": false,
|
|
"prettyprint_spaceEmptyBraces": false,
|
|
"prettyprint_spaceAfterLabel": false,
|
|
"prettyprint_spaceBeforeComma": false,
|
|
"prettyprint_spaceAfterComma": true,
|
|
"prettyprint_semicolons": false,
|
|
"prettyprint_cStyle": false,
|
|
"prettyprint_removeRedundantParens": true,
|
|
"prettyprint_minimizeParens": true,
|
|
"prettyprint_assumeOperatorAssociativity": true,
|
|
"prettyprint_rejectInvalidCode": false,
|
|
"prettyprint_indentation": "\t",
|
|
|
|
"log_format": "auto"
|
|
}
|
|
|