build: comment out JSR include
[poolifier.git] / .eslintrc.cjs
index ccf04244362008396ba0ce730697bae073b49dfe..c2f4abe2dcaddb78fa7784c9891c01f3d7226086 100644 (file)
@@ -8,10 +8,10 @@ module.exports = defineConfig({
     mocha: true
   },
   parserOptions: {
-    ecmaVersion: 2022,
-    sourceType: 'module'
+    sourceType: 'module',
+    ecmaVersion: 2022
   },
-  plugins: ['promise', 'spellcheck'],
+  plugins: ['simple-import-sort', 'promise', 'spellcheck'],
   extends: [
     'eslint:recommended',
     'plugin:import/recommended',
@@ -25,13 +25,8 @@ module.exports = defineConfig({
     }
   },
   rules: {
-    'sort-imports': [
-      'error',
-      {
-        ignoreDeclarationSort: true
-      }
-    ],
-    'import/order': 'error',
+    'simple-import-sort/imports': 'error',
+    'simple-import-sort/exports': 'error',
 
     'spellcheck/spell-checker': [
       'warn',
@@ -69,6 +64,7 @@ module.exports = defineConfig({
           'inheritDoc',
           'javascript',
           'jsdoc',
+          'linebreak',
           'localhost',
           'microjob',
           'mjs',
@@ -115,13 +111,13 @@ module.exports = defineConfig({
         project: './tsconfig.json'
       },
       extends: [
-        'plugin:@typescript-eslint/recommended',
-        'plugin:@typescript-eslint/recommended-requiring-type-checking',
+        'plugin:@typescript-eslint/strict-type-checked',
+        'plugin:@typescript-eslint/stylistic-type-checked',
         'plugin:import/typescript',
-        'standard-with-typescript'
+        'love'
       ],
       rules: {
-        '@typescript-eslint/non-nullable-type-assertion-style': 'off',
+        'operator-linebreak': 'off',
         'tsdoc/syntax': 'warn'
       }
     },
@@ -151,7 +147,8 @@ module.exports = defineConfig({
         '@typescript-eslint/no-unnecessary-type-assertion': 'off',
         '@typescript-eslint/no-redundant-type-constituents': 'off',
         '@typescript-eslint/strict-boolean-expressions': 'off',
-        '@typescript-eslint/return-await': 'off'
+        '@typescript-eslint/return-await': 'off',
+        '@typescript-eslint/no-non-null-assertion': 'off'
       }
     },
     {