Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-12-12 07:26:09 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-12-19 08:30:09 +0300
commit7a18a78c6e53f2c243c3d1170982a5949e8ce059 (patch)
treec558c4e01a77a10387abf602c097a2a8012df826 /.eslintrc.js
parent29f714b152434e1dbcf7f78d8877543f2ec51340 (diff)
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 <luigipinca@gmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index af5f751fd88..840a7448238 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',