lint: ignore underscore dangle for now

pull/4/head
Cameron Clough 2022-01-08 22:23:08 +00:00
parent 450c05501e
commit f1b185e259
1 changed files with 7 additions and 1 deletions

View File

@ -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"
}
}