-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
30 lines (30 loc) · 904 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": ["next/core-web-vitals", "next", "prettier"],
"plugins": ["prettier"],
"rules": {
"camelcase": "off",
"react/react-in-jsx-scope": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"react/jsx-filename-extension": "off",
"prettier/prettier": ["warn", { "endOfLine": "auto" }],
"react/no-array-index-key": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-unused-vars": "off",
"react/require-default-props": "off",
"import/prefer-default-export": "off",
"react/no-unknown-property": ["error", { "ignore": ["tw"] }],
"react/jsx-no-useless-fragment": "off",
"react/jsx-no-bind": "off",
"react/prop-types": "off",
"react/jsx-props-no-spreading": "off"
}
}