forked from beekeeper-studio/beekeeper-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
47 lines (47 loc) · 1.28 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
module.exports = {
"root": true,
"env": {
"node": true,
// activate “es2020” globals to fix 'BigInt' is not defined
// https://futurestud.io/tutorials/eslint-how-to-fix-bigint-is-not-defined
"es2020": true,
},
"ignorePatterns": ["node_modules", "dist", "apps/**/tsconfig.json", "*.png", "*.scss"],
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:vue/essential",
"plugin:vue/strongly-recommended",
"plugin:@typescript-eslint/recommended",
],
"rules": {
"no-console": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/ban-ts-comment": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"vue/require-prop-types": "off",
"vue/require-default-prop": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"vue/max-attributes-per-line": "off"
},
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaFeatures": {
"legacyDecorators": true
}
},
"overrides": [
{
"files": [
"apps/**/tests/**/*.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
}