-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
45 lines (44 loc) · 1.24 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
module.exports = {
extends: [
"eslint:recommended",
"plugin:vue/vue3-recommended",
// "plugin:tailwindcss/recommended",
"prettier",
],
plugins: ["unused-imports"],
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",
"no-undef": "off",
"no-unused-vars": "off",
"no-console": ["warn"],
},
parser: "vue-eslint-parser",
parserOptions: {
ecmaVersion: 2021,
sourceType: "module",
},
};