From: Thomas Lamprecht Date: Sat, 6 Jun 2020 11:36:39 +0000 (+0200) Subject: disable "no-underscore-dangle" as used in explicit unused variables X-Git-Url: https://git.proxmox.com/?p=pve-eslint.git;a=commitdiff_plain;h=3fb7828e97e131786666dce81b4e152056de6e01 disable "no-underscore-dangle" as used in explicit unused variables Signed-off-by: Thomas Lamprecht --- diff --git a/src/app.js b/src/app.js index 8a89f9a..903e834 100644 --- a/src/app.js +++ b/src/app.js @@ -206,7 +206,7 @@ const defaultConfig = { "no-mixed-operators": "warn", "no-multiple-empty-lines": "warn", "no-trailing-spaces": "warn", - "no-underscore-dangle": ["warn", { allowAfterThis: true }], + // "no-underscore-dangle": ["warn", { allowAfterThis: true }], // we use it for unused variables, like in rust "no-unneeded-ternary": "warn", "no-whitespace-before-property": "warn", "object-curly-newline": "warn",