-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheslint.config.js
77 lines (75 loc) · 2.48 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import jsdoc from 'eslint-plugin-jsdoc';
import eslintConfigPrettier from 'eslint-config-prettier';
import eslintPluginUnicorn from 'eslint-plugin-unicorn';
import mochaPlugin from 'eslint-plugin-mocha';
import globals from 'globals';
import js from '@eslint/js';
export default [
js.configs.recommended,
mochaPlugin.configs.flat.recommended,
jsdoc.configs['flat/recommended'],
eslintPluginUnicorn.configs['flat/recommended'],
{
files: ['**/*.js'],
plugins: {
jsdoc,
},
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
globals: {
...globals.nodeBuiltin,
...globals.mocha,
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
},
ignores: ['/node_modules/**'],
rules: {
'unicorn/prefer-module': 'off',
'unicorn/numeric-separators-style': 'off',
'jsdoc/check-line-alignment': 2,
'jsdoc/require-jsdoc': [
'warn',
{
require: {
FunctionDeclaration: true,
MethodDefinition: true,
ClassDeclaration: true,
ArrowFunctionExpression: false,
FunctionExpression: true,
},
},
],
'jsdoc/require-param-type': 'error',
'jsdoc/tag-lines': ['warn', 'any', { startLines: 1 }],
'jsdoc/no-undefined-types': 'error',
'jsdoc/valid-types': 'off',
},
settings: {
jsdoc: {
mode: 'jsdoc',
preferredTypes: {
array: 'Array',
'array.<>': '[]',
'Array.<>': '[]',
'array<>': '[]',
'Array<>': '[]',
Object: 'object',
'object.<>': 'Object.<>',
'object<>': 'Object.<>',
'Object<>': 'Object.<>',
set: 'Set',
'set.<>': 'Set.<>',
'set<>': 'Set.<>',
'Set<>': 'Set.<>',
promise: 'Promise',
'promise.<>': 'Promise.<>',
'promise<>': 'Promise.<>',
'Promise<>': 'Promise.<>',
},
},
},
},
eslintConfigPrettier,
];