{ "extends": [ "airbnb-typescript", "airbnb/hooks", "plugin:@typescript-eslint/recommended", "plugin:jest/recommended", "prettier", "plugin:prettier/recommended" ], "plugins": ["mocha", "react", "@typescript-eslint", "jest"], "env": { "browser": true, "es6": true, "jest": true }, "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly" }, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018, "sourceType": "module", "project": ["./tsconfig.json"] }, "ignorePatterns": ["*.config.js", "*.stories.tsx", "main.js"], "rules": { "mocha/no-exclusive-tests": "error", "react/no-array-index-key": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/camelcase": "off", "linebreak-style": "off", "prettier/prettier": [ "error", { "endOfLine": "auto" } ] } }