-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy patheslint.config.mjs
47 lines (46 loc) · 964 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
46
47
import js from '@eslint/js';
import mocha from 'eslint-plugin-mocha';
import globals from 'globals';
export default [
{
ignores: [
//
'**/elm-stuff',
'**/fixtures',
'**/templates',
'**/flow-typed',
],
},
{
rules: {
...js.configs.recommended.rules,
'no-inner-declarations': 'off',
'no-prototype-builtins': 'off',
'no-unused-vars': ['error', { caughtErrorsIgnorePattern: '^_' }],
},
languageOptions: {
globals: {
...globals.node,
},
},
},
{
files: ['tests/*'],
plugins: {
mocha,
},
languageOptions: {
globals: {
...globals.mocha,
},
},
rules: {
'mocha/handle-done-callback': 'error',
'mocha/no-exclusive-tests': 'error',
'mocha/no-exports': 'error',
'mocha/no-identical-title': 'error',
'mocha/no-nested-tests': 'error',
'mocha/no-skipped-tests': 'error',
},
},
];