From c1af58e4e5bfc12aeeb1422adf1fb7a2cac45121 Mon Sep 17 00:00:00 2001 From: thecraftianman <64441307+thecraftianman@users.noreply.github.com> Date: Thu, 8 Aug 2024 00:29:02 -0400 Subject: [PATCH] Update glualint standards --- .glualint.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.glualint.json b/.glualint.json index b0d93a232..b6987ce13 100644 --- a/.glualint.json +++ b/.glualint.json @@ -9,6 +9,7 @@ "lint_emptyBlocks": true, "lint_shadowing": false, "lint_gotos": true, + "lint_goto_identifier": true, "lint_doubleNegations": true, "lint_redundantIfStatements": true, "lint_redundantParentheses": true, @@ -17,8 +18,20 @@ "lint_unusedVars": true, "lint_unusedParameters": true, "lint_unusedLoopVars": true, + "lint_inconsistentVariableStyle": false, + "lint_spaceBetweenParens": false, + "lint_spaceBetweenBrackets": false, + "lint_spaceBetweenBraces": false, "lint_ignoreFiles": ["lua/entities/gmod_wire_expression2/core/custom/*.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_spaceAfterParens": false, "prettyprint_spaceAfterBrackets": false, "prettyprint_spaceAfterBraces": false, @@ -27,6 +40,9 @@ "prettyprint_spaceAfterComma": true, "prettyprint_semicolons": false, "prettyprint_cStyle": false, + "prettyprint_removeRedundantParens": true, + "prettyprint_minimizeParens": false, + "prettyprint_assumeOperatorAssociativity": true, "prettyprint_rejectInvalidCode": false, "prettyprint_indentation": "\t", "log_format": "auto"