From f1b185e259e55a7ee69a3821aedba00634c3fb18 Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Sat, 8 Jan 2022 22:23:08 +0000 Subject: [PATCH] lint: ignore underscore dangle for now --- .eslintrc.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 1a86537..4a758ff 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,7 +10,12 @@ "rules": { // disallow use of unary operators, ++ and -- // http://eslint.org/docs/rules/no-plusplus + // retropilot: we allow them in the for loop "no-plusplus": ["error", { "allowForLoopAfterthoughts": true }], + + // disallow use of the continue statement + // https://eslint.org/docs/rules/no-continue + // retropilot: we allow use of the continue statement "no-continue": "off", // TODO: fix and remove @@ -18,6 +23,7 @@ "no-var": "off", "one-var": "off", "no-await-in-loop": "off", - "no-console": "off" + "no-console": "off", + "no-underscore-dangle": "off" } }