From 5e9117ecd5da013cde66c3e1b5582a0661b3feaa Mon Sep 17 00:00:00 2001 From: alberto Date: Thu, 16 Jun 2016 17:24:32 +0200 Subject: [PATCH] Chore: sort rules in eslint.json (fixes #6425) (#6426) --- conf/eslint.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conf/eslint.json b/conf/eslint.json index cb6fa2e96d4..3cbd0167726 100755 --- a/conf/eslint.json +++ b/conf/eslint.json @@ -19,9 +19,9 @@ "no-debugger": "error", "no-delete-var": "error", "no-div-regex": "off", + "no-dupe-args": "error", "no-dupe-class-members": "error", "no-dupe-keys": "error", - "no-dupe-args": "error", "no-duplicate-case": "error", "no-duplicate-imports": "off", "no-else-return": "off", @@ -55,10 +55,10 @@ "no-lone-blocks": "off", "no-lonely-if": "off", "no-loop-func": "off", + "no-magic-numbers": "off", "no-mixed-operators": "off", "no-mixed-requires": "off", "no-mixed-spaces-and-tabs": "error", - "linebreak-style": "off", "no-multi-spaces": "off", "no-multi-str": "off", "no-multiple-empty-lines": "off", @@ -126,7 +126,6 @@ "no-var": "off", "no-warning-comments": "off", "no-with": "off", - "no-magic-numbers": "off", "array-bracket-spacing": "off", "array-callback-return": "off", "arrow-body-style": "off", @@ -158,12 +157,15 @@ "global-require": "off", "guard-for-in": "off", "handle-callback-err": "off", + "id-blacklist": "off", "id-length": "off", + "id-match": "off", "indent": "off", "init-declarations": "off", "jsx-quotes": "off", "key-spacing": "off", "keyword-spacing": "off", + "linebreak-style": "off", "lines-around-comment": "off", "max-depth": "off", "max-len": "off", @@ -195,15 +197,13 @@ "quote-props": "off", "quotes": "off", "radix": "off", - "id-match": "off", - "id-blacklist": "off", "require-jsdoc": "off", "require-yield": "off", "rest-spread-spacing": "off", "semi": "off", "semi-spacing": "off", - "sort-vars": "off", "sort-imports": "off", + "sort-vars": "off", "space-before-blocks": "off", "space-before-function-paren": "off", "space-in-parens": "off",