{ "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:jest/recommended" ], "parser": "babel-eslint", "parserOptions": { "sourceType": "module", "allowImportExportEverywhere": false, "codeFrame": false }, "env": { "browser": true, "node": true, "es6": true, "jest/globals": true }, "plugins": [ "babel", "react", "jest", "only-ascii", "react-hooks" ], "settings": { "react": { "pragma": "React", "version": "16.8" } }, "rules": { "strict": 0, "no-console": "off", "no-underscore-dangle": "warn", "quotes": ["error", "single"], "no-const-assign": "warn", "no-this-before-super": "warn", "no-unreachable": "warn", "no-undef": "warn", "constructor-super": "warn", "valid-typeof": "warn", "no-eq-null": "warn", "no-shadow-restricted-names": "warn", "no-trailing-spaces": "warn", "semi": "warn", "keyword-spacing": "warn", "block-spacing": "warn", "arrow-spacing": "warn", "semi-spacing": "warn", "brace-style": ["warn", "1tbs", { "allowSingleLine": true }], "dot-location": ["warn", "property"], "no-tabs": "warn", "eol-last": "warn", "comma-style": "warn", "curly": "warn", "no-shadow": "off", "no-cond-assign": "off", "no-sparse-arrays": "off", "no-unused-vars": "off", "no-useless-escape": "off", "only-ascii/only-ascii": ["warn", { "allowedChars": "✓←→♡ " }], "jest/no-disabled-tests": "warn", "jest/no-focused-tests": "error", "jest/no-identical-title": "error", "jest/prefer-to-have-length": "warn", "jest/valid-expect": "error", "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn" } }