{ "env": { "browser": true, "es2021": true }, "settings": { "react": { "version": "detect" } }, "extends": [ "plugin:react/recommended", "google", "prettier", "plugin:jsx-a11y/strict", "plugin:import/errors", "plugin:import/warnings" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 12, "sourceType": "module" }, "plugins": ["react", "prettier", "jsx-a11y"], "rules": { "require-jsdoc": "off", "react/prop-types": "off", "react/react-in-jsx-scope": "off", "jsx-a11y/alt-text": [ 2, { "elements": ["img", "object", "area", "input[type=\"image\"]"], "img": ["Image"], "object": ["Object"], "area": ["Area"], "input[type=\"image\"]": ["InputImage"] } ], "jsx-a11y/anchor-is-valid": [ "error", { "components": ["Link"], "specialLink": ["hrefLeft", "hrefRight"], "aspects": ["noHref", "invalidHref", "preferButton"] } ], "jsx-a11y/aria-role": "warn", "prettier/prettier": [ "error", { "endOfLine": "auto" } ], "import/order": [ 1, { "groups": [["builtin", "external", "internal", "parent", "sibling", "index"]] } ] } }