-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
61 lines (61 loc) · 1.59 KB
/
.eslintrc.js
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
52
53
54
55
56
57
58
59
60
61
module.exports = {
root: true,
env: {
es2017: true,
node: true,
},
extends: ["eslint:recommended", "react-app", "plugin:prettier/recommended"],
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
},
plugins: ["@typescript-eslint"],
rules: {
"no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", ignoreRestSiblings: true },
],
eqeqeq: "error",
curly: ["error", "multi-line"],
"no-duplicate-imports": "error",
"prettier/prettier": ["error", { endOfLine: "auto" }],
},
overrides: [
{
files: ["*.ts", "*.tsx"],
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
rules: {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", ignoreRestSiblings: true },
],
"@typescript-eslint/naming-convention": [
"error",
{
selector: "variable",
format: ["strictCamelCase", "UPPER_CASE", "StrictPascalCase"],
leadingUnderscore: "allow",
},
{
selector: "function",
format: ["strictCamelCase"],
},
{
selector: "enumMember",
format: ["StrictPascalCase"],
},
{
selector: "typeLike",
format: ["StrictPascalCase"],
},
],
"@typescript-eslint/array-type": ["error", { default: "array" }],
"@typescript-eslint/explicit-function-return-type": "error",
},
},
],
};