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
| {
| "extends": [
| "next",
| "@antfu",
| "plugin:storybook/recommended"
| ],
| "rules": {
| "@typescript-eslint/consistent-type-definitions": [
| "error",
| "type"
| ],
| "@typescript-eslint/no-var-requires": "off",
| "no-console": "off",
| "indent": "off",
| "@typescript-eslint/indent": [
| "error",
| 2,
| {
| "SwitchCase": 1,
| "flatTernaryExpressions": false,
| "ignoredNodes": [
| "PropertyDefinition[decorators]",
| "TSUnionType",
| "FunctionExpression[params]:has(Identifier[decorators])"
| ]
| }
| ],
| "react-hooks/exhaustive-deps": "warn",
| "react/display-name": "warn"
| }
| }
|
|