-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.js
More file actions
96 lines (95 loc) · 2.86 KB
/
Copy patheslint.config.js
File metadata and controls
96 lines (95 loc) · 2.86 KB
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
import withNuxt from './.nuxt/eslint.config.mjs';
export default withNuxt(
{
rules: {
'import/first': 'error',
'import/exports-last': 'error',
'import/newline-after-import': 'error',
'import/prefer-default-export': 'error',
'import/group-exports': 'error',
'import/no-duplicates': 'error',
'import/no-amd': 'error',
'import/no-commonjs': 'error',
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
'parent',
'sibling',
'index',
],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
},
},
],
'import/no-unused-modules': 'error',
'import/no-mutable-exports': 'error',
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: ['vite.config.ts', 'test/**/*.test.ts'] },
],
'@typescript-eslint/explicit-function-return-type': 'error',
'vue/component-api-style': ['error', ['script-setup']],
'vue/custom-event-name-casing': ['error', 'kebab-case'],
'vue/html-self-closing': 'off',
'vue/singleline-html-element-content-newline': 'off',
'vue/multi-word-component-names': 'error',
'vue/block-lang': [
'error',
{
script: {
lang: 'ts',
},
},
],
'vue/block-order': [
'error',
{
order: ['template', 'script', 'style'],
},
],
'vue/block-tag-newline': 'error',
'vue/component-name-in-template-casing': 'error',
'vue/define-emits-declaration': ['error', 'type-literal'],
'vue/define-macros-order': [
'error',
{
order: ['defineModel', 'defineProps', 'defineEmits', 'defineSlots'],
defineExposeLast: false,
},
],
'vue/define-props-declaration': 'error',
'vue/enforce-style-attribute': 'error',
'vue/no-empty-component-block': 'error',
'vue/no-multiple-objects-in-class': 'error',
'vue/no-required-prop-with-default': 'error',
'vue/no-template-target-blank': 'error',
'vue/no-undef-components': 'error',
'vue/no-undef-properties': 'error',
'vue/no-unused-emit-declarations': 'error',
'vue/no-unused-properties': 'error',
'vue/no-unused-refs': 'error',
'vue/no-useless-v-bind': 'error',
'vue/prefer-separate-static-class': 'error',
'vue/prefer-true-attribute-shorthand': 'error',
'vue/require-typed-ref': 'error',
'vue/v-on-handler-style': 'error',
},
},
{
files: [
'app/pages/**/*.vue',
'app/components/_app/*.vue',
'app/components/__common/attributes/*.vue',
'app/components/__common/icon/**/*.vue',
],
rules: {
'vue/multi-word-component-names': 'off',
},
},
);