-
Notifications
You must be signed in to change notification settings - Fork 2
/
eslint.config.mjs
46 lines (45 loc) · 900 Bytes
/
eslint.config.mjs
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
// eslint.config.js
import antfu from '@antfu/eslint-config';
export default antfu({ vue: true, typescript: true }, {
rules: {
'no-console': [
'error',
{
allow: [
'info',
'warn',
'error',
],
},
],
'style/brace-style': [
'error',
'1tbs',
{
allowSingleLine: true,
},
],
'style/semi': [
'error',
'always',
],
'unused-imports/no-unused-vars': [
'error',
{
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'ts/no-unused-vars': [
'error',
{
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
},
});