Skip to content

Commit

Permalink
Merge pull request #3025 from moisseev/webui
Browse files Browse the repository at this point in the history
[Test] Minor ESLint configuration changes
  • Loading branch information
vstakhov committed Sep 1, 2019
2 parents 432064e + c65fbe4 commit bdf6442
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.json
Expand Up @@ -8,6 +8,7 @@
},
"rules": {
"array-bracket-newline": ["error", "consistent"],
"array-element-newline": "off",
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"camelcase": "off",
"capitalized-comments": "off",
Expand All @@ -23,6 +24,7 @@
"key-spacing": ["error", {
"singleLine": { "afterColon": false }
}],
"line-comment-position": "off",
"max-params": ["warn", 6],
"max-statements": ["warn", 44],
"max-statements-per-line": ["error", { "max": 2 }],
Expand All @@ -32,6 +34,7 @@
"no-continue": "off",
"no-extra-parens": ["error", "functions"],
"no-implicit-globals": "off",
"no-inline-comments": "off",
"no-magic-numbers": "off",
"no-negated-condition": "off",
"no-plusplus": "off",
Expand All @@ -58,14 +61,11 @@


// Temporarily disabled rules
"array-element-newline": "off",
"func-style": "off",
"function-paren-newline": "off",
"line-comment-position": "off",
"max-len": "off",
"max-lines": "off",
"max-lines-per-function": "off",
"no-inline-comments": "off",
"no-invalid-this": "off",
"sort-keys": "off",
"sort-vars": "off"
Expand Down
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -5,7 +5,6 @@
"stylelint-config-standard": "*"
},
"eslintIgnore": [
"*.min.js",
"interface/js/lib/domReady.js"
"*.min.js"
]
}

0 comments on commit bdf6442

Please sign in to comment.