-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
51 lines (51 loc) · 1.17 KB
/
.eslintrc.cjs
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
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier', 'jsdoc'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:node/recommended',
'plugin:jsdoc/recommended',
'plugin:unicorn/recommended',
'prettier',
],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
env: {
browser: false,
node: true,
es6: true,
},
rules: {
'@typescript-eslint/no-unused-vars': 'error',
'unicorn/no-reduce': 'off',
'unicorn/prevent-abbreviations': 'off',
'unicorn/no-process-exit': 'off',
'unicorn/import-style': 'off',
'node/no-missing-import': 'off',
'node/no-unsupported-features/es-syntax': [
'error',
{
ignores: ['modules'],
},
],
'node/no-extraneous-import': ['error'],
'node/no-unpublished-import': [
'error',
{
allowModules: ['vite', 'vitest'],
},
],
'jsdoc/no-undefined-types': 'off',
},
overrides: [
{
files: ['tests/fixtures/fake-bin.js', 'tests/fixtures/fake-bin-with-env.js'],
rules: {
'node/shebang': 'off',
},
},
],
};