diff options
Diffstat (limited to '.eslintrc.json')
| -rw-r--r-- | .eslintrc.json | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index a2f2202..9189345 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -2,30 +2,17 @@ "parser": "@typescript-eslint/parser", // Specifies the ESLint parser "extends": [ "eslint:recommended", - "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], - "settings": { - "react": { - "version": "detect" - } - }, + "plugins": ["@typescript-eslint"], "env": { - "browser": true, + "browser": false, "node": true, "es6": true }, - "plugins": ["@typescript-eslint", "react"], "parserOptions": { - "ecmaFeatures": { - "jsx": true - }, "ecmaVersion": 2018, // Allows for the parsing of modern ECMAScript features "sourceType": "module" // Allows for the use of imports - }, - "rules": { - "react/prop-types": "off", // Disable prop-types as we use TypeScript for type checking - "@typescript-eslint/explicit-function-return-type": "off" } -} +}
\ No newline at end of file |
