{ "$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/eslintrc.json", "env": { "browser": true, "commonjs": true, "es6": true }, "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@next/next/recommended", "plugin:import/typescript" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018, "sourceType": "module" }, "plugins": ["@typescript-eslint", "react", "react-hooks", "import", "simple-import-sort"], "settings": { "react": { "version": "detect" } }, "globals": {}, "rules": { "react/prop-types": "off", "react/react-in-jsx-scope": "off", "@typescript-eslint/no-extra-semi": "off", "@typescript-eslint/ban-ts-ignore": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/explicit-function-return-type": [ "warn", { "allowExpressions": true } ], "@typescript-eslint/no-unused-vars": [ "error", { "vars": "all", "args": "all", "argsIgnorePattern": "^_" } ], "simple-import-sort/imports": "error", "simple-import-sort/exports": "error", "curly": "error", "react/jsx-boolean-value": "warn", "import/no-default-export": "error" } }