refactor: move benchmark vs external pools into its own repo
[poolifier.git] / .eslintrc.js
1 const { defineConfig } = require('eslint-define-config')
2
3 module.exports = defineConfig({
4 root: true,
5 env: {
6 es2022: true,
7 node: true,
8 mocha: true
9 },
10 parserOptions: {
11 ecmaVersion: 2022,
12 sourceType: 'module'
13 },
14 plugins: ['promise', 'spellcheck'],
15 extends: [
16 'eslint:recommended',
17 'plugin:import/recommended',
18 'plugin:promise/recommended'
19 ],
20 settings: {
21 'import/resolver': {
22 typescript: {
23 project: './tsconfig.json'
24 }
25 }
26 },
27 rules: {
28 'sort-imports': [
29 'error',
30 {
31 ignoreDeclarationSort: true
32 }
33 ],
34 'import/order': 'error',
35
36 'spellcheck/spell-checker': [
37 'warn',
38 {
39 skipWords: [
40 'axios',
41 'benoit',
42 'browserslist',
43 'builtins',
44 'christopher',
45 'cjs',
46 'cloneable',
47 'comparator',
48 'cpu',
49 'cpus',
50 'cryptographically',
51 'ctx',
52 'deprecations',
53 'deque',
54 'dequeue',
55 'dequeued',
56 'deregisters',
57 'dts',
58 'ecma',
59 'elu',
60 'enqueue',
61 'enum',
62 'errored',
63 'esm',
64 'fastify',
65 'fibonacci',
66 'fp',
67 'fs',
68 'inheritDoc',
69 'javascript',
70 'jsdoc',
71 'localhost',
72 'microjob',
73 'mjs',
74 'nodemailer',
75 'npx',
76 'num',
77 'os',
78 'perf',
79 'piscina',
80 'pnpm',
81 'poolifier',
82 'prepend',
83 'prepends',
84 'readdir',
85 'readonly',
86 'req',
87 'resize',
88 'sinon',
89 'smtp',
90 'threadjs',
91 'threadwork',
92 'tinypool',
93 'tsconfig',
94 'tsdoc',
95 'typedoc',
96 'unlink',
97 'unref',
98 'utf8',
99 'webcrypto',
100 'workerpool',
101 'ws',
102 'wss',
103 'wwr'
104 ],
105 skipIfMatch: ['^@.*', '^plugin:.*']
106 }
107 ]
108 },
109 overrides: [
110 {
111 files: ['**/*.ts'],
112 plugins: ['@typescript-eslint', 'eslint-plugin-tsdoc'],
113 parser: '@typescript-eslint/parser',
114 parserOptions: {
115 project: './tsconfig.json'
116 },
117 extends: [
118 'plugin:@typescript-eslint/recommended',
119 'plugin:@typescript-eslint/recommended-requiring-type-checking',
120 'plugin:import/typescript',
121 'standard-with-typescript'
122 ],
123 rules: {
124 '@typescript-eslint/no-inferrable-types': [
125 'error',
126 { ignoreProperties: true }
127 ],
128 'tsdoc/syntax': 'warn'
129 }
130 },
131 {
132 files: ['examples/typescript/**/*.ts'],
133 rules: {
134 'import/no-unresolved': 'off',
135 '@typescript-eslint/no-unsafe-argument': 'off',
136 '@typescript-eslint/no-unsafe-call': 'off',
137 '@typescript-eslint/no-unsafe-return': 'off',
138 '@typescript-eslint/no-unsafe-assignment': 'off',
139 '@typescript-eslint/no-unsafe-member-access': 'off',
140 '@typescript-eslint/no-unnecessary-type-assertion': 'off',
141 '@typescript-eslint/no-redundant-type-constituents': 'off',
142 '@typescript-eslint/strict-boolean-expressions': 'off',
143 '@typescript-eslint/return-await': 'off'
144 }
145 },
146 {
147 files: ['**/*.js', '**/*.mjs'],
148 plugins: ['jsdoc'],
149 extends: ['plugin:n/recommended', 'plugin:jsdoc/recommended', 'standard']
150 },
151 {
152 files: ['tests/**/*.js'],
153 rules: {
154 'jsdoc/require-jsdoc': 'off'
155 }
156 },
157 {
158 files: ['tests/pools/selection-strategies/**/*.js'],
159 rules: {
160 'n/no-missing-require': 'off'
161 }
162 },
163 {
164 files: ['benchmarks/**/*.js', 'benchmarks/**/*.mjs'],
165 rules: {
166 'jsdoc/require-jsdoc': 'off'
167 }
168 },
169 {
170 files: ['examples/javascript/**/*.js'],
171 rules: {
172 'n/no-missing-require': 'off',
173 'jsdoc/require-jsdoc': 'off'
174 }
175 }
176 ]
177 })