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:
authorLuke "Jared" Bennett <lbennett@gitlab.com>2017-08-04 15:14:54 +0300
committerLuke "Jared" Bennett <lbennett@gitlab.com>2017-08-04 15:14:54 +0300
commitab737d0416c5b6d8f83a6e855f0dc44b2686911b (patch)
tree59a24acda098eb2b244c8229bdb0f14879d052d7 /.eslintrc
parente9dd33330731d1cf8df1c7d76c4a161b4087941a (diff)
Correct eslintrc comma dangle
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc b/.eslintrc
index 0d5ffbe418d..3e07edbccfe 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -31,6 +31,6 @@
"import/no-commonjs": "error",
"no-multiple-empty-lines": ["error", { "max": 1 }],
"promise/catch-or-return": "error",
- "no-underscore-dangle": ["error", { "allow": ["__"]}],
+ "no-underscore-dangle": ["error", { "allow": ["__"]}]
}
}