aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index 1fb6921..0000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,47 +0,0 @@
-module.exports = {
- "env": {
- "node": true,
- "browser": true,
- "es2021": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:@typescript-eslint/recommended"
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaFeatures": {
- "jsx": true
- },
- "ecmaVersion": 12,
- "sourceType": "module"
- },
- "plugins": [
- "react",
- "@typescript-eslint"
- ],
- "rules": {
- "@typescript-eslint/no-explicit-any": "off",
- "react/react-in-jsx-scope": "off",
- "indent": [
- "error",
- 4
- ],
- "linebreak-style": [
- "error",
- "unix"
- ],
- "quotes": [
- "error",
- "double"
- ],
- "semi": [
- "error",
- "always"
- ]
- },
- "globals": {
- "React": "writable"
- }
-};