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>2016-11-22 21:56:03 +0300
committerMike Greiling <mike@pixelcog.com>2016-11-22 21:56:03 +0300
commita571a61f0a1e381b438034c44ddc240ddb965b83 (patch)
tree353cd0c4b8ff986e5d07b8cb9c4aa595d84f0743 /.eslintrc
parent46b725aba6054ddf536286e967c84d0afe7d1398 (diff)
keep json alphabetized
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc12
1 files changed, 6 insertions, 6 deletions
diff --git a/.eslintrc b/.eslintrc
index 67dbf9cffd2..788a88487d8 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -4,17 +4,17 @@
"es6": true
},
"extends": "airbnb",
- "plugins": [
- "filenames"
- ],
- "rules": {
- "filenames/match-regex": [2, "^[a-z0-9_]+(.js)?$"]
- },
"globals": {
"$": false,
"_": false,
"gl": false,
"gon": false,
"jQuery": false
+ },
+ "plugins": [
+ "filenames"
+ ],
+ "rules": {
+ "filenames/match-regex": [2, "^[a-z0-9_]+(.js)?$"]
}
}