From ff579fe79db9450f170ce78fcc0a555c6d56f8ae Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 3 Oct 2020 13:03:01 -0700 Subject: [PATCH] tools,test: enable multiline-comment-style rule in tests Use `//` for multline comments. PR-URL: https://github.com/nodejs/node/pull/35485 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- test/.eslintrc.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/.eslintrc.yaml b/test/.eslintrc.yaml index 8a14d71729b76b..40c515e923b3c2 100644 --- a/test/.eslintrc.yaml +++ b/test/.eslintrc.yaml @@ -5,11 +5,10 @@ env: es6: true rules: - # ECMAScript 6 - # http://eslint.org/docs/rules/#ecmascript-6 no-var: error prefer-const: error symbol-description: off + multiline-comment-style: ["error", "separate-lines"] no-restricted-syntax: # Config copied from .eslintrc.js