docs: add links to examples
[poolifier.git] / .eslintrc.js
index 02782ad45cfeb9766eddf2c8e50bfaabb22e6372..c5784c0f286cac8f39b921950a6ae437e2a88e8e 100644 (file)
@@ -115,9 +115,13 @@ module.exports = defineConfig({
     {
       files: ['examples/typescript/**/*.ts'],
       rules: {
-        // '@typescript-eslint/no-unsafe-argument': 'off',
+        'import/no-unresolved': 'off',
+        '@typescript-eslint/no-unsafe-argument': 'off',
         '@typescript-eslint/no-unsafe-call': 'off',
-        '@typescript-eslint/no-unsafe-assignment': 'off'
+        '@typescript-eslint/no-unsafe-assignment': 'off',
+        '@typescript-eslint/no-unsafe-member-access': 'off',
+        '@typescript-eslint/no-unnecessary-type-assertion': 'off',
+        '@typescript-eslint/restrict-template-expressions': 'off'
       }
     },
     {