-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.mjs
More file actions
76 lines (74 loc) · 2.05 KB
/
eslint.config.mjs
File metadata and controls
76 lines (74 loc) · 2.05 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
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: [
'esm/**/*',
'dist/**/*',
'esm_*/*',
'*.js',
'*.mjs',
'example/*',
'src/htscodecs',
'benchmarks/*',
],
},
{
languageOptions: {
parserOptions: {
project: ['./tsconfig.lint.json'],
tsconfigRootDir: import.meta.dirname,
},
},
},
eslint.configs.recommended,
...tseslint.configs.recommended,
...tseslint.configs.stylisticTypeChecked,
...tseslint.configs.strictTypeChecked,
eslintPluginUnicorn.configs.recommended,
importPlugin.flatConfigs.recommended,
{
rules: {
'no-underscore-dangle': 'off',
curly: 'error',
eqeqeq: 'error',
'@typescript-eslint/consistent-type-imports': 'error',
'unicorn/text-encoding-identifier-case': 'off',
'unicorn/no-useless-undefined': 'off',
'unicorn/prefer-node-protocol': 'off',
'unicorn/filename-case': 'off',
'unicorn/numeric-separators-style': 'off',
'unicorn/number-literal-case': 'off',
'unicorn/no-new-array': 'off',
'unicorn/prevent-abbreviations': 'off',
'unicorn/prefer-spread': 'off',
'unicorn/prefer-string-replace-all': 'off',
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/ban-ts-comment': [
'error',
{ 'ts-expect-error': 'allow-with-description', 'ts-ignore': true },
],
'import/no-unresolved': 'off',
'import/order': [
'error',
{
named: true,
'newlines-between': 'always',
alphabetize: {
order: 'asc',
},
groups: [
'builtin',
['external', 'internal'],
['parent', 'sibling', 'index', 'object'],
'type',
],
},
],
},
},
)