-
Notifications
You must be signed in to change notification settings - Fork 33
/
.eslintrc.cjs
68 lines (67 loc) · 1.56 KB
/
.eslintrc.cjs
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
62
63
64
65
66
67
68
module.exports = {
env: {
node: true,
es2021: true,
jest: true,
},
extends: [
"eslint:recommended",
"plugin:vue/vue3-essential",
"plugin:@typescript-eslint/recommended",
"plugin:cypress/recommended",
"plugin:vue/vue3-recommended",
"plugin:prettier-vue/recommended",
"prettier",
"@vue/typescript",
"plugin:import/recommended",
],
parserOptions: {
ecmaVersion: 2018,
parser: "@typescript-eslint/parser",
sourceType: "module",
},
plugins: ["prettier", "vue", "@typescript-eslint"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
rules: {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/naming-convention": [
"warn",
{
selector: ["interface", "enum", "enumMember", "typeAlias"],
format: ["PascalCase"],
},
],
"@typescript-eslint/no-duplicate-enum-values": "warn",
"import/named": "off",
"import/no-unresolved": "off",
"no-irregular-whitespace": 0,
"vue/multi-word-component-names": "off",
"vue/no-v-html": "off",
"vue/require-default-prop": "off",
},
ignorePatterns: [
"contribuer",
"dist",
"dist-server",
"IndividuForm.vue",
"*.min.js",
"node_modules",
"test/integration",
".tmp",
"tmp",
],
overrides: [
{
files: ["**/__tests__/*.{j,t}s?(x)"],
env: {
jest: true,
},
},
],
}