Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Eipert <leipert@gitlab.com>2018-05-28 12:22:54 +0300
committerLukas Eipert <leipert@gitlab.com>2018-05-29 19:42:13 +0300
commitee9974b6d1daa03888199caf06e9e4aa8ef87b4b (patch)
tree7afd03ba3fe2ec0d12d87ee327657326d9a25934 /.eslintrc.yml
parent76082ce9aa2578d755bfc84c3f4e03f914f68d02 (diff)
disable prefer-destructuring for now
Diffstat (limited to '.eslintrc.yml')
-rw-r--r--.eslintrc.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml
index cef538a249d..ef8ae69cd0a 100644
--- a/.eslintrc.yml
+++ b/.eslintrc.yml
@@ -54,3 +54,6 @@ rules:
function-paren-newline: off
object-curly-newline: off
padded-blocks: off
+ # Disabled for now, to make the eslint 3 -> eslint 4 update smoother
+ ## Destructuring: https://eslint.org/docs/rules/prefer-destructuring
+ prefer-destructuring: off