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:
authorMike Greiling <mike@pixelcog.com>2017-02-02 22:05:51 +0300
committerMike Greiling <mike@pixelcog.com>2017-02-02 22:05:51 +0300
commit030e766d29703baec8690b7dd54bf213f0d93d14 (patch)
tree58b76ede7404d6659097903ece00924892e86380 /spec/javascripts
parent96bbe965d2bfd564d82067d1e21beac17434f525 (diff)
allow console.xxx in tests, reorder eslint rules alphabetically
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/.eslintrc5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/javascripts/.eslintrc b/spec/javascripts/.eslintrc
index 3cd419b37c9..fbd9bb9f0ff 100644
--- a/spec/javascripts/.eslintrc
+++ b/spec/javascripts/.eslintrc
@@ -22,9 +22,10 @@
},
"plugins": ["jasmine"],
"rules": {
- "prefer-arrow-callback": 0,
"func-names": 0,
"jasmine/no-suite-dupes": [1, "branch"],
- "jasmine/no-spec-dupes": [1, "branch"]
+ "jasmine/no-spec-dupes": [1, "branch"],
+ "no-console": 0,
+ "prefer-arrow-callback": 0
}
}