-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path.eslintrc.cjs
40 lines (39 loc) · 972 Bytes
/
.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
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
extends: ['@vexip-ui/eslint-config'],
root: true,
rules: {
'@typescript-eslint/no-use-before-define': 'off',
'vue/no-v-html': 'off',
'vue/no-textarea-mustache': 'off'
},
overrides: [
{
files: ['src/**/*.vue'],
rules: {
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/consistent-type-imports': [
'error',
{
prefer: 'type-imports',
disallowTypeAnnotations: false
}
],
'vue/no-restricted-block': [
'error',
{
element: '/[^(template|script)]/',
message: 'Do not use blocks other than <template> or <script>.'
}
]
}
},
{
files: ['scripts/**'],
rules: {
'no-sequences': 'off',
'@typescript-eslint/no-var-requires': 'off'
}
}
]
})