-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
32 lines (32 loc) · 841 Bytes
/
.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
{
"extends": ["airbnb", "plugin:prettier/recommended"],
"parser": "typescript-eslint-parser",
"rules": {
"no-undef": "off",
"max-len": "off",
"no-multi-str": "off",
"object-curly-spacing": ["error", "never"],
"react/jsx-filename-extension": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/prefer-default-export": "off",
"jsx-a11y/anchor-is-valid": "off",
"react/no-unescaped-entities": "off",
"react/sort-comp": "off",
"no-restricted-globals": "off",
"no-unused-vars": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["**/*.test.tsx"]
}
],
"no-use-before-define": "off",
"no-restricted-syntax": "off",
"no-continue": "off"
},
"env": {
"browser": true,
"jest": true
}
}