-
Notifications
You must be signed in to change notification settings - Fork 61
/
.eslintrc
51 lines (51 loc) · 1.23 KB
/
.eslintrc
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"extends": [
"airbnb-typescript",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:@next/next/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"import",
"@typescript-eslint",
"prettier",
"react"
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts", ".tsx", ".mjs"
]
}
},
"rules": {
"prettier/prettier": [
"off"
],
"func-names": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"max-classes-per-file": "off",
"no-bitwise": "off",
"class-methods-use-this": "off",
"no-new": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"no-else-return": "off",
"no-useless-return": "off",
"no-return-assign": "off",
"consistent-return": "off",
"no-underscore-dangle": "off",
"@typescript-eslint/return-await": "off",
"no-console": "off",
"no-restricted-syntax": "off",
"@typescript-eslint/no-empty-function": "off",
"import/no-unresolved": "off",
"@typescript-eslint/no-use-before-define": "off"
},
"parserOptions": {
"project": "./tsconfig.json"
}
}