diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 3e79826..de3fb7c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -3,24 +3,15 @@ "es2021": true, "node": true }, - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "prettier" - ], + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module", "project": "./tsconfig.json" }, - "plugins": [ - "@typescript-eslint", - "deprecation" - ], - "ignorePatterns": [ - "dist" - ], + "plugins": ["@typescript-eslint", "deprecation"], + "ignorePatterns": ["dist"], "rules": { "no-return-await": "off", "@typescript-eslint/no-empty-interface": "warn", @@ -56,9 +47,7 @@ "error", { "allowDestructuring": true, - "allowedNames": [ - "that" - ] + "allowedNames": ["that"] } ], "@typescript-eslint/no-unused-vars": [ @@ -68,9 +57,7 @@ } ], "no-implied-eval": "off", - "@typescript-eslint/no-implied-eval": [ - "error" - ], + "@typescript-eslint/no-implied-eval": ["error"], "deprecation/deprecation": "warn" } -}
\ No newline at end of file +} |