-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
137 lines (129 loc) · 3.25 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
extraFileExtensions: [
'.vue'
],
project: [
'./tsconfig.json',
'./tsconfig.config.json'
]
},
ignorePatterns: [
'public/**/*',
'dist/**/*',
'node_modules/**/*',
'*.json'
],
env: {
'vue/setup-compiler-macros': true
},
extends: [
"standard",
'eslint:recommended',
'@vue/eslint-config-typescript',
'plugin:vue/vue3-recommended',
],
rules: {
// General rules
// Enforce placing object properties on separate lines
'object-property-newline': 'error',
// Enforce consistent line breaks after opening and before closing braces
'object-curly-newline': [
'error',
{
'multiline': true,
'consistent': true
}
]
},
overrides: [
{
files: [
'*.vue'
],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: "module"
},
rules: {
indent: 'off',
// Uncategorized Vue.js rules
// Enforce consistent indentation in <script>
'vue/script-indent': [
'error',
2,
{
'baseIndent': 1,
'switchCase': 1,
'ignores': []
}
],
// require the registered component name to match the imported component name
'vue/match-component-import-name': 'error',
// require component name property to match its file name
'vue/match-component-file-name': 'error',
// enforce line breaks after opening and before closing block-level tags
'vue/block-tag-newline': 'error',
// Disallow static inline style attributes
'vue/no-static-inline-styles': [
'error',
{
'allowBinding': true
}
],
// Disallow use other than available lang
'vue/block-lang': [
'error',
{
'script': {
'lang': 'ts'
}
}
],
// Enforce specific casing for the component naming style in template
'vue/component-name-in-template-casing': [
'error',
'PascalCase',
{
'registeredComponentsOnly': false,
'ignores': []
}
],
// Enforce new lines between multi-line properties in Vue components
'vue/new-line-between-multi-line-property': [
'error',
{
'minLineOfMultilineProperty': 2
}
],
// Require or disallow newlines between sibling tags in template
'vue/padding-line-between-tags': [
'error',
[
{
'blankLine': 'always',
'prev': '*',
'next': '*'
}
]
],
// Require or disallow padding lines between blocks
'vue/padding-line-between-blocks': [
'error',
'always'
],
// Enforce static class names order
'vue/static-class-names-order': [
'error'
]
}
}
]
}