[5d6f37a] | 1 | {
|
---|
| 2 | "root": true,
|
---|
| 3 | "env": {
|
---|
| 4 | "browser": true,
|
---|
| 5 | "es2021": true
|
---|
| 6 | },
|
---|
| 7 | "plugins": ["unused-imports", "@typescript-eslint", "prettier"],
|
---|
| 8 | "extends": ["airbnb", "airbnb-typescript", "airbnb/hooks", "prettier"],
|
---|
| 9 | "parser": "@typescript-eslint/parser",
|
---|
| 10 | "parserOptions": {
|
---|
| 11 | "ecmaFeatures": {
|
---|
| 12 | "jsx": true
|
---|
| 13 | },
|
---|
| 14 | "ecmaVersion": "latest",
|
---|
| 15 | "sourceType": "module",
|
---|
| 16 | "project": "./tsconfig.json",
|
---|
| 17 | "warnOnUnsupportedTypeScriptVersion": false
|
---|
| 18 | },
|
---|
| 19 | "settings": {
|
---|
| 20 | "import/resolver": {
|
---|
| 21 | "typescript": {
|
---|
| 22 | "alwaysTryTypes": true
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
| 25 | },
|
---|
| 26 | "rules": {
|
---|
| 27 | "no-alert": 0,
|
---|
| 28 | "camelcase": 0,
|
---|
| 29 | "no-console": 0,
|
---|
| 30 | "no-unused-vars": 0,
|
---|
| 31 | "no-param-reassign": 0,
|
---|
| 32 | "no-underscore-dangle": 0,
|
---|
| 33 | "no-restricted-exports": 0,
|
---|
| 34 | "react/no-children-prop": 0,
|
---|
| 35 | "react/react-in-jsx-scope": 0,
|
---|
| 36 | "jsx-a11y/anchor-is-valid": 0,
|
---|
| 37 | "react/no-array-index-key": 0,
|
---|
| 38 | "no-promise-executor-return": 0,
|
---|
| 39 | "react/require-default-props": 0,
|
---|
| 40 | "react/jsx-props-no-spreading": 0,
|
---|
| 41 | "import/prefer-default-export": 0,
|
---|
| 42 | "react/function-component-definition": 0,
|
---|
| 43 | "@typescript-eslint/naming-convention": 0,
|
---|
| 44 | "jsx-a11y/control-has-associated-label": 0,
|
---|
| 45 | "@typescript-eslint/no-use-before-define": 0,
|
---|
| 46 | "react/jsx-no-useless-fragment": [
|
---|
| 47 | 1,
|
---|
| 48 | {
|
---|
| 49 | "allowExpressions": true
|
---|
| 50 | }
|
---|
| 51 | ],
|
---|
| 52 | "prefer-destructuring": [
|
---|
| 53 | 1,
|
---|
| 54 | {
|
---|
| 55 | "object": true,
|
---|
| 56 | "array": false
|
---|
| 57 | }
|
---|
| 58 | ],
|
---|
| 59 | "react/no-unstable-nested-components": [
|
---|
| 60 | 1,
|
---|
| 61 | {
|
---|
| 62 | "allowAsProps": true
|
---|
| 63 | }
|
---|
| 64 | ],
|
---|
| 65 | "@typescript-eslint/no-unused-vars": [
|
---|
| 66 | 1,
|
---|
| 67 | {
|
---|
| 68 | "args": "none"
|
---|
| 69 | }
|
---|
| 70 | ],
|
---|
| 71 | "react/jsx-no-duplicate-props": [
|
---|
| 72 | 1,
|
---|
| 73 | {
|
---|
| 74 | "ignoreCase": false
|
---|
| 75 | }
|
---|
| 76 | ],
|
---|
| 77 | "unused-imports/no-unused-imports": 0,
|
---|
| 78 | "unused-imports/no-unused-vars": [
|
---|
| 79 | 0,
|
---|
| 80 | {
|
---|
| 81 | "vars": "all",
|
---|
| 82 | "varsIgnorePattern": "^_",
|
---|
| 83 | "args": "after-used",
|
---|
| 84 | "argsIgnorePattern": "^_"
|
---|
| 85 | }
|
---|
| 86 | ]
|
---|
| 87 | }
|
---|
| 88 | }
|
---|