From 99a90dbd4a134b5aa3cfe94a630cc29d0d77b697 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 9 Dec 2021 14:54:35 -0800 Subject: [PATCH] tools: enable jsdoc/require-returns-type ESLint rule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41130 Reviewed-By: Michaƫl Zasso Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Ruben Bridgewater --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index fbebb7c97ddcd4..ca0a1fb57bc173 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -313,6 +313,8 @@ module.exports = { 'jsdoc/check-tag-names': 'off', 'jsdoc/require-returns': 'off', 'jsdoc/require-property-description': 'off', + 'jsdoc/check-param-names': 'off', + 'jsdoc/tag-lines': 'off', // Custom rules from eslint-plugin-node-core 'node-core/no-unescaped-regexp-dot': 'error',