From bda04601bcb94de480efe4671c7c69d741c655fd Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Wed, 1 Aug 2018 18:08:54 +0200 Subject: [PATCH] chore: document why no-underscore-dangle is off --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 38393f4fd..9863597c2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -21,7 +21,7 @@ module.exports = { 'no-param-reassign': 'off', 'no-plusplus': 'off', 'no-restricted-syntax': 'off', - 'no-underscore-dangle': 'off', + 'no-underscore-dangle': 'off', // https://github.com/apiaryio/dredd-transactions/pull/179#discussion_r206852270 'no-use-before-define': 'off' } };