From 91fc85ae1baf44fc608f7768491bd18a8ae62e3c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 11 Dec 2021 20:26:09 -0800 Subject: [PATCH] tools: enable jsdoc/tag-lines ESLint rule This rule is part of the JSDoc ESLint plugin's recommneded rule set. It prohibits blank lines between JSDoc tags. PR-URL: https://github.com/nodejs/node/pull/41147 Reviewed-By: Luigi Pinca --- .eslintrc.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 0dd79eb25f0a9b..506bc3cec01a52 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -350,8 +350,6 @@ module.exports = { 'jsdoc/require-returns': 'off', 'jsdoc/require-property-description': 'off', 'jsdoc/check-param-names': 'off', - 'jsdoc/tag-lines': 'off', - 'jsdoc/require-returns-type': 'off', // Custom rules from eslint-plugin-node-core 'node-core/no-unescaped-regexp-dot': 'error',