-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
44 lines (44 loc) · 1.09 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
module.exports = {
root: true,
env: {
browser: true,
node: true,
es2021: true
},
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly'
},
plugins: ['vue', '@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended',
'prettier'
],
overrides: [],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 'latest',
sourceType: 'module'
},
ignorePatterns: ['dist', '.eslintrc.cjs'],
rules: {
'no-undef': 'off',
'no-unref': 'off',
'no-unused-vars': 'off',
'no-control-regex': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-empty-function': 'warn',
'vue/first-attribute-linebreak': 'off',
'vue/multi-word-component-names': 'off',
'vue/no-unused-components': 'warn',
'vue/attributes-order': 'off',
'vue/attribute-hyphenation': 'off',
'vue/no-v-html': 'off',
'vue/no-unused-vars': 'off'
}
}