-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
eslint.config.ts
63 lines (61 loc) · 1.76 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
import {
defineConfig,
javascript,
prettier,
typescript
} from '@kazupon/eslint-config'
import path from 'node:path'
const __dirname = path.dirname(new URL(import.meta.url).pathname)
export default defineConfig(
javascript(),
typescript({
parserOptions: {
project: [
path.join(__dirname, './tsconfig.json'),
path.join(__dirname, './packages/unplugin-vue-i18n/tsconfig.json')
]
}
}),
prettier(),
{
name: 'ignores',
ignores: [
'packages/rollup-plugin-vue-i18n/*',
'packages/vite-plugin-vue-i18n/*',
'packages/vue-i18n-loader/*',
'packages/unplugin-vue-i18n/lib/*',
'packages/bundle-utils/lib/*',
'examples/*',
'**/test/fixtures/**',
'**/*.config.ts',
'**/dist/**',
'**/.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'
}
}
)