From e00a6c53e0d42d4b76791441975b70888ead0a73 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 7 Oct 2022 12:32:11 +0200 Subject: [PATCH] Fix eslint configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .eslintignore | 1 + .eslintrc.js | 10 ---------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.eslintignore b/.eslintignore index 18058db2..0786c823 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,4 @@ +examples/typescript/**/*.ts benchmarks/versus-external-pools/ docs/ outputs/ diff --git a/.eslintrc.js b/.eslintrc.js index b37ad59f..fe04926f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -77,9 +77,6 @@ module.exports = defineConfig({ 'jsdoc/match-description': [ 'warn', { - // mainDescription: - // '/^[A-Z`].+?(\\.|:)(\\n\\n.*((\\n{1,2}- .+)|(_.+_)|`.+`|\\n\\n---))?$/us', - // matchDescription: '^[A-Z`].+(\\.|`.+`)$', contexts: ['any'], tags: { param: true, @@ -131,13 +128,6 @@ module.exports = defineConfig({ 'node/no-missing-require': 'off', 'jsdoc/require-jsdoc': 'off' } - }, - { - files: ['examples/typescript/**/*.ts'], - rules: { - 'import/no-unresolved': 'off', - 'jsdoc/require-jsdoc': 'off' - } } ], settings: { -- 2.34.1