-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
32 lines (32 loc) · 1.03 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"settings": {
"react": {
"version": "detect" // Tells eslint-plugin-react to automatically detect the version of React to use
}
},
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-unused-vars": 0,
"react/prop-types": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-namespace": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/ban-types": 0,
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-this-alias": 0,
"@typescript-eslint/no-unsafe-declaration-merging": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-misused-new": 0
},
"ignorePatterns": ["node_modules", "**/lib/**/*.js"]
}