-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
155 lines (141 loc) · 4.31 KB
/
Copy patheslint.config.js
File metadata and controls
155 lines (141 loc) · 4.31 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/**
* ESLint v9 Flat Config
* Migrated from .eslintrc.js.
*/
const js = require('@eslint/js');
const tseslint = require('typescript-eslint');
const javascriptFiles = ['**/*.js', '**/*.cjs', '**/*.mjs'];
const typescriptFiles = ['src/**/*.ts', 'src/**/*.mts', 'types/**/*.d.ts', 'test/**/*.ts', 'examples/**/*.ts', 'website/**/*.ts', 'website/**/*.tsx'];
const nodeGlobals = {
__dirname: 'readonly',
__filename: 'readonly',
Buffer: 'readonly',
console: 'readonly',
process: 'readonly',
require: 'readonly',
module: 'readonly',
exports: 'writable',
global: 'readonly',
setImmediate: 'readonly',
clearImmediate: 'readonly',
setTimeout: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
clearInterval: 'readonly',
URL: 'readonly',
queueMicrotask: 'readonly',
};
module.exports = [
// ESLint recommended rules.
{
...js.configs.recommended,
files: javascriptFiles,
},
// TypeScript parser and recommended syntax-aware rules (type correctness remains owned by tsc/tsd).
...tseslint.configs.recommended.map((config) => ({
...config,
files: typescriptFiles,
})),
// Global config.
{
files: javascriptFiles,
languageOptions: {
ecmaVersion: 2021,
sourceType: 'commonjs',
globals: nodeGlobals,
},
rules: {
// Code style.
'indent': 'off', // Indentation is currently handled outside ESLint.
'quotes': ['warn', 'single', { avoidEscape: true }],
'semi': ['error', 'always'],
'no-trailing-spaces': 'warn',
// Best practices.
'no-unused-vars': ['warn', {
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
}],
'no-console': 'off', // Console output is allowed for logger adapters and scripts.
'no-empty': ['error', { allowEmptyCatch: true }],
'no-prototype-builtins': 'off',
// ES6+
'prefer-const': 'warn',
'no-var': 'warn',
'object-shorthand': 'warn',
'prefer-arrow-callback': 'off',
// Async.
'require-await': 'warn',
// Error prevention.
'no-undef': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-unreachable': 'error',
}
},
// TypeScript project files.
{
files: typescriptFiles,
languageOptions: {
ecmaVersion: 2021,
sourceType: 'module',
globals: nodeGlobals,
},
rules: {
'indent': 'off',
'quotes': ['warn', 'single', { avoidEscape: true }],
'semi': ['error', 'always'],
'no-trailing-spaces': 'warn',
'no-console': 'off',
'prefer-const': 'warn',
'no-var': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-unused-vars': ['warn', {
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
}],
},
},
// ESM entrypoint override.
{
files: ['**/*.mjs'],
languageOptions: {
ecmaVersion: 2021,
sourceType: 'module',
}
},
// Test file override.
{
files: ['test/**/*.js', '**/*.test.js'],
languageOptions: {
globals: {
describe: 'readonly',
it: 'readonly',
before: 'readonly',
after: 'readonly',
beforeEach: 'readonly',
afterEach: 'readonly',
expect: 'readonly',
}
}
},
// Ignored files.
{
ignores: [
'node_modules/',
'coverage/',
'lib/',
'old/',
'reports/',
'index.mjs',
'*.min.js',
'.nyc_output/',
'website/dist/',
'website/.vitepress/dist/',
'.generated/',
]
}
];