Fixing unused functions and params

This commit is contained in:
caribaud 2023-06-04 21:37:56 +02:00
parent ca0f9f4e59
commit f87f6c75f5
2 changed files with 9 additions and 32 deletions

View file

@ -29,6 +29,8 @@
"brace-style": ["warn", "allman", {"allowSingleLine": true}],
"function-call-argument-newline" : ["warn", "consistent"],
"function-paren-newline": ["warn", "consistent"],
"no-magic-numbers": ["error", {"ignore": [0,1,2,100]}]
"no-magic-numbers": ["error", {"ignore": [0,1,2,100]}],
"quote-props": ["warn", "as-needed"],
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}]
}
}