Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2019-05-30 23:48:46 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2019-05-30 23:48:46 +0300
commit44c93c03a6b55e4085212d48373a42390de04d2e (patch)
treeb7a39deb0fe0c25a4c8d87747b8df3cbe85caeb9 /.eslintrc.json
parentdfd49d16b8436c38c23818f6a16985cc501b2fba (diff)
Fix ESLint errors
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index e640ab56e8..e649e2f3af 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -6,7 +6,7 @@
"rules": {
"array-bracket-spacing": "error",
"brace-style": "error",
- "camelcase": "warn",
+ "camelcase": "error",
"comma-style": ["error", "last"],
"curly": "error",
"dot-notation": "error",
@@ -22,9 +22,9 @@
"no-multiple-empty-lines": "error",
"no-new-func": "error",
"no-new-object": "error",
- "no-param-reassign": "warn",
+ "no-param-reassign": "error",
"no-trailing-spaces": "error",
- "no-underscore-dangle": "warn",
+ "no-underscore-dangle": "error",
"no-unneeded-ternary": "error",
"no-unsafe-negation": "error",
"no-useless-escape": "error",