forked from bencodezen/vue-enterprise-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.cjs
121 lines (119 loc) · 3.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
env: {
es2021: true,
browser: true,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-essential',
'plugin:import/typescript',
'plugin:promise/recommended',
'plugin:@typescript-eslint/recommended',
'@vue/eslint-config-typescript',
'plugin:@intlify/vue-i18n/recommended',
'@vue/eslint-config-prettier',
],
overrides: [
{
env: {
mocha: true,
'cypress/globals': true,
},
rules: {
strict: 'off',
},
files: ['tests/e2e/**/*.{cy,spec,e2e}.{js,ts,jsx,tsx}'],
extends: ['plugin:cypress/recommended'],
},
],
settings: {
'vue-i18n': {
localeDir: './src/lang/*.{json,json5,yaml,yml}',
messageSyntaxVersion: '^9.2.2',
},
},
plugins: ['promise'],
rules: {
// 'import/no-relative-parent-imports': 'error',
// 'import/order': 'error',
// 'import/prefer-default-export': 'off',
'no-undef': 'off',
'vue/array-bracket-spacing': 'error',
'vue/arrow-spacing': 'error',
'vue/block-spacing': 'error',
'vue/brace-style': 'error',
'vue/camelcase': 'error',
'vue/comma-dangle': ['error', 'always-multiline'],
'vue/component-name-in-template-casing': 'error',
'vue/multi-word-component-names': 'off',
'vue/dot-location': ['error', 'property'],
'vue/eqeqeq': 'error',
'vue/key-spacing': 'error',
'vue/keyword-spacing': 'error',
'vue/no-boolean-default': ['error', 'default-false'],
'vue/no-deprecated-scope-attribute': 'error',
'vue/no-empty-pattern': 'error',
'vue/object-curly-spacing': ['error', 'always'],
'vue/padding-line-between-blocks': 'error',
'vue/space-infix-ops': 'error',
'vue/space-unary-ops': 'error',
'vue/v-on-function-call': 'error',
'vue/v-slot-style': [
'error',
{
atComponent: 'v-slot',
default: 'v-slot',
named: 'longform',
},
],
'vue/valid-v-slot': 'error',
'max-classes-per-file': 'off',
'no-useless-constructor': 'off',
'no-empty-function': 'off',
'@typescript-eslint/no-useless-constructor': 'error',
'no-use-before-define': 'off',
'@typescript-eslint/no-unused-vars': ['warn'],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: ['const', 'let', 'var', 'case', 'default'],
next: '*',
},
{
blankLine: 'any',
prev: ['const', 'let', 'var'],
next: ['const', 'let', 'var'],
},
{
blankLine: 'always',
prev: '*',
next: ['interface', 'type', 'function'],
},
],
'@intlify/vue-i18n/no-raw-text': [
'warn',
{
attributes: {
'/.+/': [
'title',
'aria-label',
'aria-placeholder',
'aria-roledescription',
'aria-valuetext',
],
input: ['placeholder'],
img: ['alt'],
},
ignoreNodes: ['md-icon', 'v-icon'],
ignorePattern: '^[-#:()&]+$',
ignoreText: [],
},
],
},
};