-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
31 lines (31 loc) · 867 Bytes
/
.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
{
"plugins": ["@typescript-eslint", "simple-import-sort", "prettier"],
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:node/recommended"
],
"parserOptions": {
"ecmaVersion": 2022
},
"env": {
"node": true
},
"rules": {
"node/no-unsupported-features/es-syntax": ["error", { "ignores": ["modules"] }],
"node/no-missing-import": "off",
"node/no-unpublished-import": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"prettier/prettier": "error"
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
}