-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
32 lines (32 loc) · 811 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
{
"root": true,
"env": {
"node": true,
"browser": true,
},
"extends": [
"sanity",
"sanity/typescript",
"sanity/react",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended",
"plugin:react/jsx-runtime",
],
"rules": {
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/no-unused-vars": 1,
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
"no-unused-vars": 0,
"no-shadow": "off",
"react/display-name": 0,
"react/jsx-no-bind": 0,
"react/jsx-handler-names": 0,
"react/react-in-jsx-scope": 0,
"camelcase": 0,
"symbol-description": 0,
"no-void": 0,
},
}