-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
47 lines (47 loc) · 1.04 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"env": {
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"node/no-unsupported-features/es-builtins": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/no-unsupported-features/node-builtins": "off",
"node/no-missing-import": "off",
"node/no-mixed-requires": "off",
"node/no-unpublished-import": "off",
"node/no-unpublished-require": "off",
"node/shebang": "off",
"prettier/prettier": "warn",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
},
"settings": {},
"ignorePatterns": [
"node_modules",
"public",
"dist",
"build",
"out",
"**/__generated__/*"
],
"parser": "@typescript-eslint/parser"
}