build(deps-dev): apply updates
[poolifier.git] / .eslintrc.js
CommitLineData
6a6e81d0
S
1// @ts-check
2const { defineConfig } = require('eslint-define-config')
3
4module.exports = defineConfig({
97c16550 5 root: true,
777b7824
S
6 env: {
7 es2021: true,
8 node: true,
9 mocha: true
10 },
6d0425b4
JB
11 parserOptions: {
12 ecmaVersion: 2021,
13 sourceType: 'module'
14 },
38e795c1 15 plugins: ['promise', 'spellcheck'],
777b7824 16 extends: [
777b7824 17 'eslint:recommended',
305aeaa7 18 'plugin:import/recommended',
78cea37e 19 'plugin:promise/recommended'
777b7824
S
20 ],
21 rules: {
fa699c42
JB
22 'sort-imports': [
23 'warn',
24 {
25 ignoreMemberSort: true,
50aa7901 26 ignoreDeclarationSort: true
fa699c42 27 }
5c5a1fb7
S
28 ],
29
30 'spellcheck/spell-checker': [
31 'warn',
32 {
33 skipWords: [
ca6c7d70 34 'benny',
fe2f6f84 35 'browserslist',
e4bc7a49 36 'builtins',
5c5a1fb7 37 'christopher',
7a6a0a96 38 'cjs',
74750c7f 39 'comparator',
23ff945a
JB
40 'cpu',
41 'cpus',
7a6a0a96 42 'ctx',
5c5a1fb7 43 'ecma',
3832ad95 44 'enum',
bdaf31cd 45 'fibonacci',
7a6a0a96 46 'fs',
a76fac14 47 'inheritDoc',
5c5a1fb7 48 'jsdoc',
7a6a0a96 49 'microjob',
fe2f6f84 50 'num',
23ff945a 51 'os',
7a6a0a96 52 'piscina',
a35560ba 53 'poolifier',
7a6a0a96 54 'poolify',
5c5a1fb7
S
55 'readonly',
56 'serializable',
a3809289 57 'sinon',
7a6a0a96
JB
58 'threadjs',
59 'threadwork',
7d82d90e 60 'tsconfig',
38e795c1 61 'tsdoc',
fe2f6f84 62 'typedoc',
7a6a0a96 63 'unlink',
5c5a1fb7 64 'unregister',
7a6a0a96 65 'utf8',
5c5a1fb7
S
66 'workerpool'
67 ],
68 skipIfMatch: ['^@.*', '^plugin:.*']
69 }
777b7824 70 ]
3c5eaeb9
JB
71 },
72 overrides: [
50eceb07 73 {
a17cc27a 74 files: ['**/*.ts'],
38e795c1 75 plugins: ['@typescript-eslint', 'eslint-plugin-tsdoc'],
815d4289 76 parser: '@typescript-eslint/parser',
f3636726 77 parserOptions: {
f3636726
JB
78 project: './tsconfig.json'
79 },
a17cc27a 80 extends: [
f3636726 81 'plugin:@typescript-eslint/eslint-recommended',
a17cc27a 82 'plugin:@typescript-eslint/recommended',
f3636726 83 'plugin:@typescript-eslint/recommended-requiring-type-checking',
3aa14de1
JB
84 'plugin:import/typescript',
85 'standard-with-typescript'
a17cc27a 86 ],
50eceb07 87 rules: {
a17cc27a
JB
88 '@typescript-eslint/no-inferrable-types': [
89 'error',
90 { ignoreProperties: true }
91 ],
c3eb346b 92 'tsdoc/syntax': 'error'
50eceb07
S
93 }
94 },
7a6a0a96
JB
95 {
96 files: ['examples/typescript/**/*.ts'],
97 rules: {
98 'import/no-unresolved': 'off',
7a6a0a96
JB
99 '@typescript-eslint/no-unsafe-argument': 'off',
100 '@typescript-eslint/no-unsafe-call': 'off',
101 '@typescript-eslint/no-unsafe-assignment': 'off'
102 }
103 },
3c5eaeb9 104 {
e99dbb69 105 files: ['**/*.js'],
38e795c1 106 plugins: ['jsdoc'],
3aa14de1 107 extends: ['plugin:n/recommended', 'plugin:jsdoc/recommended', 'standard']
fa699c42
JB
108 },
109 {
305aeaa7
JB
110 files: ['tests/**/*.js'],
111 rules: {
112 'jsdoc/require-jsdoc': 'off'
113 }
114 },
4bf99d51
JB
115 {
116 files: ['tests/pools/selection-strategies/**/*.js'],
117 rules: {
2f8c5b5c 118 'n/no-missing-require': 'off'
4bf99d51
JB
119 }
120 },
305aeaa7
JB
121 {
122 files: ['benchmarks/**/*.js'],
fa699c42 123 rules: {
a17cc27a 124 'jsdoc/require-jsdoc': 'off'
fa699c42 125 }
583a27ce 126 },
d44e66fc
JB
127 {
128 files: ['benchmarks/versus-external-pools/**/*.js'],
129 rules: {
2f8c5b5c 130 'n/no-missing-require': 'off'
d44e66fc
JB
131 }
132 },
583a27ce
JB
133 {
134 files: ['examples/**/*.js'],
135 rules: {
2f8c5b5c 136 'n/no-missing-require': 'off',
305aeaa7
JB
137 'jsdoc/require-jsdoc': 'off'
138 }
3c5eaeb9 139 }
38e795c1 140 ]
6a6e81d0 141})