-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.js
53 lines (53 loc) · 1.24 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
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ["airbnb-base", "prettier"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["@typescript-eslint"],
rules: {
"import/no-extraneous-dependencies": 0,
"class-methods-use-this": 0,
"no-param-reassign": 0,
"import/extensions": [
"error",
"ignorePackages",
{
js: "never",
mjs: "never",
jsx: "never",
ts: "never",
tsx: "never",
},
],
"no-empty": ["error", { allowEmptyCatch: true }],
"import/prefer-default-export": 0,
"prefer-destructuring": 0,
"no-shadow": 0,
"prefer-promise-reject-errors": 0,
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": ["error"],
"no-restricted-syntax": 0,
"no-plusplus": 0,
"guard-for-in": 0,
"func-names": 0,
"no-console": 0,
"no-underscore-dangle": 0,
"import/no-relative-packages": 0,
},
settings: {
"import/extensions": "off",
"import/no-unresolved": "off",
"import/resolver": {
node: {
extensions: [".js", ".ts"],
},
},
},
ignorePatterns: [".husky/**", "dist/**/*", "playground/**/*"],
};