fix(ci): silence linter
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 30 May 2024 20:28:40 +0000 (22:28 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 30 May 2024 20:28:40 +0000 (22:28 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
eslint.config.js
src/pools/cluster/fixed.ts
src/pools/thread/fixed.ts

index fd2c801dd36585798bcacf355817100ee61f3403..0f1bd02ecf18c283f5e7ba53cac1b3ffcaf96699 100644 (file)
@@ -44,14 +44,23 @@ export default defineFlatConfig([
     },
   },
   {
-    files: ['tests/**/*.cjs', 'benchmarks/**/*.cjs', 'examples/**/*.cjs'],
+    files: ['examples/**/*.js', 'examples/**/*.cjs'],
     rules: {
+      'no-undef': 'off',
+      'n/no-missing-import': 'off',
       '@typescript-eslint/no-require-imports': 'off',
     },
   },
   {
-    files: ['tests/**/*.cjs', 'tests/**/*.js', 'tests/**/*.mjs'],
+    files: ['benchmarks/**/*.cjs'],
     rules: {
+      '@typescript-eslint/no-require-imports': 'off',
+    },
+  },
+  {
+    files: ['tests/**/*.js', 'tests/**/*.mjs', 'tests/**/*.cjs'],
+    rules: {
+      '@typescript-eslint/no-require-imports': 'off',
       '@typescript-eslint/no-empty-function': 'off',
     },
   },
index 51a891bf53259db5df60de46b8f4acfef80ad775..bf61cd477b153af111d835a0371d193d92ceb786 100644 (file)
@@ -26,7 +26,7 @@ export class FixedClusterPool<
    * @param numberOfWorkers - Number of workers for this pool.
    * @param filePath - Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
    * @param opts - Options for this fixed cluster pool.
-   * @param maximumNumberOfWorkers
+   * @param maximumNumberOfWorkers - The maximum number of workers for this pool.
    */
   public constructor (
     numberOfWorkers: number,
index 85c5c9be8f94f4dc1b41ea873d0bbd9e742dac19..69b3c3071e487abf1658c454289c7117ee351152 100644 (file)
@@ -30,7 +30,7 @@ export class FixedThreadPool<
    * @param numberOfThreads - Number of threads for this pool.
    * @param filePath - Path to an implementation of a `ThreadWorker` file, which can be relative or absolute.
    * @param opts - Options for this fixed thread pool.
-   * @param maximumNumberOfThreads
+   * @param maximumNumberOfThreads - The maximum number of threads for this pool.
    */
   public constructor (
     numberOfThreads: number,