-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc.json
31 lines (31 loc) · 890 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
31
{
"parser": "@typescript-eslint/parser",
"extends": ["airbnb", "next/core-web-vitals"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"extends": ["airbnb-typescript"],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"rules": {
"@typescript-eslint/indent": "off"
}
}
],
"rules": {
"object-curly-newline": "off",
"implicit-arrow-linebreak": "off",
"operator-linebreak": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-filename-extension": "off",
"import/prefer-default-export": "off",
"import/no-anonymous-default-export": "off",
"react/jsx-curly-newline": "off",
"function-paren-newline": "off",
"react/jsx-wrap-multilines": "off",
"react/no-unstable-nested-components": "off",
"no-confusing-arrow": "off"
}
}