-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy patheslint.config.ts
86 lines (84 loc) · 1.95 KB
/
eslint.config.ts
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
import {
comments,
defineConfig,
javascript,
jsonc,
markdown,
prettier,
promise,
regexp,
typescript,
vitest,
yaml
} from '@kazupon/eslint-config'
import { resolve } from 'node:path'
const __dirname = import.meta.dirname
export default defineConfig(
javascript(),
typescript({
parserOptions: {
project: [
resolve(__dirname, './tsconfig.json'),
resolve(__dirname, './packages/unplugin-vue-i18n/tsconfig.json')
]
}
}),
comments(),
promise(),
regexp(),
jsonc({
json: true,
json5: true,
jsonc: true
}),
yaml(),
markdown(),
vitest(),
prettier(),
{
name: 'docs',
files: ['**/*.md/*.ts', '**/*.md/*.js'],
rules: {
'@typescript-eslint/no-unused-vars': 'off'
}
},
{
name: 'ignores',
ignores: [
'examples/**',
'.unmaintained/**',
'**/*.md/*.ts',
'**/test/fixtures/**',
'**/*.config.ts',
'**/dist/**',
'**/lib/**',
'**/.eslint-config-inspector/**',
'**/tsconfig.json',
'**/*.yml',
'**/*.yaml',
'**/*.json',
'**/*.json5',
'**/*.jsonc',
'**/*.vue'
]
},
{
rules: {
'no-case-declarations': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/await-thenable': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off'
}
}
)