From 6481fc0de56687372bd98c067103567f86779f35 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 9 Sep 2018 11:58:32 +0200 Subject: [PATCH] Simplify the "spaced-comment" ESLint rule With the Firefox addon removed from the GitHub repository, there's no longer any JavaScript code utilizing the old preprocessor. --- .eslintrc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.eslintrc b/.eslintrc index 1306bc20f0369..ca3c4364921f9 100644 --- a/.eslintrc +++ b/.eslintrc @@ -167,10 +167,6 @@ "space-infix-ops": ["error", { "int32Hint": false }], "space-unary-ops": ["error", { "words": true, "nonwords": false, }], "spaced-comment": ["error", "always", { - "line": { - "exceptions": ["//", "#else", "#endif"], - "markers": ["#if", "#elif", "#include", "#expand", "#error"], - }, "block": { "balanced": true, }