From e8434d88fefc7d31e09112740ce3f8c02962d485 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 f707caffdafde4..a28de016906960 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