lint rules added and fixed

This commit is contained in:
Dustin Loring
2024-12-02 06:06:17 -05:00
parent aef26f1c68
commit 87620f38be
8 changed files with 127 additions and 117 deletions

View File

@@ -20,6 +20,12 @@ export default [
'@typescript-eslint/no-empty-object-type': 'off',
'@blitz/comment-syntax': 'off',
'@blitz/block-scope-case': 'off',
'array-bracket-spacing': ["error", "never"],
'object-curly-newline': ["error", { "consistent": true }],
'keyword-spacing': ["error", { "before": true, "after": true }],
'consistent-return': "error",
'semi': ["error", "always"],
'arrow-spacing': ["error", { "before": true, "after": true }]
},
},
{