-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
48 lines (45 loc) · 1.28 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
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'plugin:tailwindcss/recommended',
'prettier'
],
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
'vue/component-tags-order': [
'error',
{
order: ['script', 'template', 'style']
}
],
'vue/multi-word-component-names': 'off',
'vue/component-api-style': ['error', ['script-setup', 'composition']],
'vue/component-name-in-template-casing': 'error',
'vue/define-macros-order': [
'warn',
{
order: ['defineProps', 'defineEmits']
}
],
'vue/define-emits-declaration': ['error', 'type-based'],
'vue/define-props-declaration': ['error', 'type-based'],
'vue/match-component-import-name': 'error',
'vue/no-ref-object-destructure': 'error',
'vue/no-unused-refs': 'error',
'vue/no-useless-v-bind': 'error',
'vue/padding-line-between-tags': 'warn',
'vue/prefer-separate-static-class': 'error',
'vue/prefer-true-attribute-shorthand': 'error',
'vue/no-v-html': 'off',
'tailwindcss/no-custom-classname': 'off',
'no-undef': 'off',
'no-unused-vars': 'off',
'no-console': ['warn']
}
}