generated from ics-software-engineering/nextjs-application-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.json
32 lines (32 loc) · 1016 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
32
{
"extends": ["next/core-web-vitals", "airbnb", "airbnb-typescript"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"arrow-parens": "off",
"func-names": "off",
"linebreak-style": "off",
"max-len": ["error", 120],
"no-console": "off",
"no-plusplus": "off",
"no-restricted-syntax": "off",
"no-return-assign": "off",
"object-curly-newline": "off",
"react/function-component-definition": "off",
"react/jsx-props-no-spreading": "off",
"react/one-expression-per-line": "off",
"react/react-in-jsx-scope": "off",
"operator-linebreak": ["off"],
"import/no-extraneous-dependencies": ["off"],
"indent": "off",
"@typescript-eslint/indent": "off",
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/no-shadow": "off",
"implicit-arrow-linebreak": "off",
"@typescript-eslint/implicit-arrow-linebreak": "off"
}
}