From e7761b627f2754becb232fe248dc36c012eaf2e0 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 26 Mar 2021 08:51:53 -0700 Subject: [PATCH] tools: apply consistent comma-dangle lint rule Use comma-dangle settings from the rest of the code base on tests as well. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell Reviewed-By: Derek Lewis --- test/.eslintrc.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/.eslintrc.yaml b/test/.eslintrc.yaml index 146633bf850f83..6a0104f7ce17ca 100644 --- a/test/.eslintrc.yaml +++ b/test/.eslintrc.yaml @@ -5,8 +5,6 @@ env: es6: true rules: - # For now, comma-dangle is more lenient in the test directory than elsewhere. - comma-dangle: ["error", "only-multiline"] no-var: error prefer-const: error symbol-description: off