{ "env": { "browser": true }, "extends": ["airbnb-base", "plugin:prettier/recommended"], "plugins": ["prettier"], "rules": { "no-const-assign": "warn", "no-this-before-super": "warn", "no-undef": "warn", "no-continue": "off", "no-unreachable": "warn", "no-unused-vars": "warn", "constructor-super": "warn", "valid-typeof": "warn", "quotes": [2, "double"], "semi": "error", "import/prefer-default-export": "off", "no-console": "off", "class-methods-use-this": "off", "consistent-return": "off", "import/no-cycle": "off", "no-await-in-loop": "off", "radix": "off", "import/no-named-as-default": "off", "import/no-named-as-default-member": "off" }, "parser": "@babel/eslint-parser", "parserOptions": { "ecmaVersion": 2020, "sourceType": "module", "babelOptions": { "plugins": [ "@babel/plugin-syntax-import-assertions" ] } } }