-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path.eslintrc
More file actions
23 lines (23 loc) · 769 Bytes
/
.eslintrc
File metadata and controls
23 lines (23 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": [
"react-app",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@next/next/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"import/no-anonymous-default-export": 2,
"no-console": [1, { "allow": ["warn", "error"] }],
"@typescript-eslint/no-unused-vars": [2, { "ignoreRestSiblings": true }],
"no-use-before-define": "off",
"react/jsx-no-target-blank": [2, { "allowReferrer": true }],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}