-
Notifications
You must be signed in to change notification settings - Fork 3
/
eslint.config.js
60 lines (58 loc) · 1.3 KB
/
eslint.config.js
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
import ashNazg from 'eslint-config-ash-nazg';
export default [
{
ignores: [
'dist',
'docs/jsdoc',
'coverage',
'ignore',
'compressed-source'
]
},
...ashNazg(['sauron', 'browser']),
{
files: ['test/test.*.js'],
rules: {
'import/unambiguous': 'off',
'jsdoc/require-jsdoc': 'off'
}
},
{
files: ['docs/jsdoc-config.js'],
languageOptions: {
globals: {
module: 'readonly'
}
}
},
{
files: ['*.md/*.js'],
rules: {
'eol-last': 'off',
'sonarjs/no-internal-api-use': 'off',
'no-console': 'off',
'no-undef': 'off',
camelcase: 'off',
'no-unused-vars': ['warn', {
varsIgnorePattern: String.raw`^(jml|body|nbsp|input|input2|div|simpleAttachToParent|firstTr|trsFragment|\$|\$\$)$`
}],
'padded-blocks': 'off',
'import/unambiguous': 'off',
'import/no-unresolved': 'off',
'import/no-commonjs': 'off',
'n/no-missing-import': 'off',
'no-multi-spaces': 'off',
'no-alert': 'off',
'jsdoc/require-jsdoc': 'off'
}
},
{
rules: {
// Todo: Reenable
'@stylistic/max-len': 0,
'@eslint-community/eslint-comments/require-description': 0,
'no-loop-func': 0,
'prefer-named-capture-group': 0
}
}
];