diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 9b6af237..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parser": "@typescript-eslint/parser", - "plugins": ["prettier", "@typescript-eslint"], - "extends": [ - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended" - ], - "rules": { - "no-underscore-dangle": 0, - "curly": "error", - "@typescript-eslint/no-explicit-any": 0, - "@typescript-eslint/no-unused-vars": 0, - "@typescript-eslint/explicit-module-boundary-types": 0, - "@typescript-eslint/ban-ts-comment": 0, - "semi": ["error", "never"], - "prettier/prettier": [ - "error", - { - "endOfLine": "auto" - } - ] - } -}