From 2eb13e3986ff976ff167f5034ab15123214f15aa Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Sun, 4 Jun 2023 07:40:48 +0200 Subject: [PATCH] tools: disable jsdoc/no-defaults rule PR-URL: https://github.com/nodejs/node/pull/48328 Reviewed-By: Antoine du Hamel Reviewed-By: Mestery Reviewed-By: Mohammed Keyvanzadeh --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 689cd7fb23f01b..71c772b3be9e5c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -300,6 +300,7 @@ module.exports = { 'jsdoc/newline-after-description': 'off', 'jsdoc/require-returns-description': 'off', 'jsdoc/valid-types': 'off', + 'jsdoc/no-defaults': 'off', 'jsdoc/no-undefined-types': 'off', 'jsdoc/require-param': 'off', 'jsdoc/check-tag-names': 'off',