-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
34 lines (34 loc) · 1.06 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"env": {
"browser": true,
"es2022": true,
"jest": true
},
"extends": ["airbnb-base", "airbnb-typescript", "plugin:import/typescript", "plugin:jest/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"rules": {
"react/jsx-filename-extension": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/indent": "off",
"implicit-arrow-linebreak": "off",
"class-methods-use-this": "off",
"no-underscore-dangle": "off",
"object-curly-newline": "off",
"no-restricted-syntax": "off",
"operator-linebreak": "off",
"no-param-reassign": "off",
"prefer-template": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"max-len": "off",
"no-tabs": "off",
"indent": "off"
},
"ignorePatterns": ["node_modules/", "dist/", "__tests__"]
}