X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=eslint.config.js;h=6288f9b9c646fb7a0fb18f656cd92a81aa1b1ac5;hb=3aa8d6646706dd32bbd96795330f0a5365d52efa;hp=1758a01a329b5d363c52fa0e0d543523a03b85d8;hpb=2c0d622027f7566ab2443fce084a71ccca13e60c;p=poolifier.git diff --git a/eslint.config.js b/eslint.config.js index 1758a01a..6288f9b9 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -17,6 +17,11 @@ export default defineFlatConfig([ js.configs.recommended, ...nodePlugin.configs['flat/mixed-esm-and-cjs'], jsdoc.configs['flat/recommended-typescript'], + { + rules: { + 'jsdoc/check-tag-names': ['warn', { typed: true, definedTags: ['defaultValue', 'experimental', 'typeParam'] }], + }, + }, ...tseslint.config( ...tseslint.configs.strictTypeChecked, ...tseslint.configs.stylisticTypeChecked @@ -79,6 +84,7 @@ export default defineFlatConfig([ { files: ['examples/**/*.ts'], rules: { + '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-call': 'off', '@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/no-unsafe-assignment': 'off',