diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 47dd5e6..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "env": { - "es2021": true, - "node": true - }, - "extends": [ - "eslint:recommended", - "plugin:node/recommended" - ], - "overrides": [ - { - "files": ["*.js"], - "rules": { - "no-constant-condition": "off" - } - } - ], - "parserOptions": { - "ecmaVersion": "latest", - "sourceType": "module" - }, - "rules": { - "indent": [ - "error", - "tab" - ], - "linebreak-style": [ - "error", - "unix" - ], - "quotes": [ - "error", - "single" - ], - "semi": [ - "error", - "always" - ], - "node/no-unsupported-features/es-syntax": [ - "error", - { "ignores": ["modules"] } - ] - } -} |