From 0c14e7e7c85e497e451f58ace78c12bbf46a11e8 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 | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index af5f751fd88a44..840a7448238816 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -350,7 +350,6 @@ module.exports = { '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',