diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-27 19:51:04 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-27 19:51:09 -0300 |
commit | 4a1f33c5a55d8c910132becbe2dca6fab16ef02c (patch) | |
tree | eeacd2a18edaed1ed3e4a0e4e63c8a5969b9807d | |
parent | d2bcdb7d5aa668579879d635072963bf9092fb2b (diff) |
eslint: drop .eslintrc.json
-rw-r--r-- | .eslintrc.json | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 430d4e36..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "env": { - "es2021": true, - "node": true - }, - "extends": "eslint:recommended", - "parserOptions": { - "ecmaVersion": "latest", - "sourceType": "module" - }, - "rules": { - "indent": ["off"], - "no-empty": ["error", { - "allowEmptyCatch": true - }], - "no-unexpected-multiline": ["off"], - "no-unused-labels": ["off"], - "no-unused-vars": ["error", { - "argsIgnorePattern": "^_", - "destructuredArrayIgnorePattern": "^" - }], - "no-cond-assign": ["off"], - "no-constant-condition": ["off"], - "no-unsafe-finally": ["off"], - "no-self-assign": ["off"], - "require-yield": ["off"] - } -} |