-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
30 lines (30 loc) · 897 Bytes
/
.eslintrc.json
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
{
"extends": ["plugin:@next/next/recommended", "airbnb", "airbnb-typescript", "prettier"],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["**/*.stories.*", "**/*.test.*"],
"peerDependencies": true
}
],
"react/require-default-props": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-props-no-spreading": "off",
"react/destructuring-assignment": "off",
"import/extensions": "off",
"default-param-last": "off",
"prefer-arrow-callback": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/default-param-last": "off",
"arrow-body-style": "off",
"no-param-reassign": "off",
"no-else-return": "off",
"class-methods-use-this": "off",
"no-continue": "off",
"no-await-in-loop": "off"
}
}