forked from exercism/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
45 lines (39 loc) · 867 Bytes
/
eslint.config.mjs
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
// @ts-check
import config from '@exercism/eslint-config-javascript';
import maintainersConfig from '@exercism/eslint-config-javascript/maintainers.mjs';
import globals from 'globals';
export default [
...config,
...maintainersConfig,
{
files: maintainersConfig[1].files,
rules: {
'jest/expect-expect': ['warn', { assertFunctionNames: ['expect*'] }],
},
},
{
files: ['scripts/**/*.mjs'],
languageOptions: {
globals: {
...globals.node,
},
},
},
// <<inject-rules-here>>
{
ignores: [
// # Protected or generated
'/.appends/**/*',
'/.github/**/*',
'/.vscode/**/*',
// # Binaries
'/bin/*',
// # Configuration
'/config',
'/babel.config.js',
// # Typings
'/exercises/**/global.d.ts',
'/exercises/**/env.d.ts',
],
},
];