-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy patheslint.config.mjs
More file actions
96 lines (92 loc) · 2.45 KB
/
eslint.config.mjs
File metadata and controls
96 lines (92 loc) · 2.45 KB
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
import eslint from '@eslint/js'
import eslintPluginUnicorn from 'eslint-plugin-unicorn'
import { defineConfig } from 'eslint/config'
import importPlugin from 'eslint-plugin-import'
import tseslint from 'typescript-eslint'
export default defineConfig(
{
ignores: [
'webpack.config.js',
'dist/*',
'benchmarks/*',
'esm/*',
'esm_*/*',
'profile*',
'example/*',
'eslint.config.mjs',
'*.mjs',
'*.cjs',
],
},
{
languageOptions: {
parserOptions: {
project: ['./tsconfig.lint.json'],
tsconfigRootDir: import.meta.dirname,
},
},
},
eslint.configs.recommended,
...tseslint.configs.recommended,
...tseslint.configs.stylisticTypeChecked,
...tseslint.configs.strictTypeChecked,
importPlugin.flatConfigs.recommended,
eslintPluginUnicorn.configs.recommended,
{
rules: {
'no-console': [
'warn',
{
allow: ['error', 'warn'],
},
],
curly: 'error',
eqeqeq: 'error',
'@typescript-eslint/consistent-type-imports': 'error',
semi: ['error', 'never'],
'unicorn/number-literal-case': 'off',
'unicorn/no-null': 'off',
'unicorn/prefer-module': 'off',
'unicorn/filename-case': 'off',
'unicorn/prevent-abbreviations': 'off',
'unicorn/prefer-code-point': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/ban-ts-comment': [
'error',
{ 'ts-expect-error': 'allow-with-description', 'ts-ignore': true },
],
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/restrict-template-expressions': [
'error',
{ allowNumber: true },
],
'@typescript-eslint/prefer-nullish-coalescing': 'error',
'@typescript-eslint/no-deprecated': 'warn',
'import/no-unresolved': 'off',
'import/extensions': ['error', 'always', { ignorePackages: true }],
'import/order': [
'error',
{
named: true,
'newlines-between': 'always',
alphabetize: {
order: 'asc',
},
groups: [
'builtin',
['external', 'internal'],
['parent', 'sibling', 'index', 'object'],
'type',
],
},
],
},
},
)