From 749039006a24c5335621bc3204ca57bcc643c96e Mon Sep 17 00:00:00 2001 From: Igor Gassmann Date: Thu, 1 Mar 2018 16:08:43 -0500 Subject: [PATCH] HOTFIX: Fix Codacy ESLint configuration --- .eslintrc.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index decace25d..69a674b7a 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -11,12 +11,7 @@ "webpack": { "config": "webpack.renderer.additions.js" } - }, - "prettier/prettier": ["error", { - "trailingComma": "es5", - "printWidth": 100, - "singleQuote": true - }] + } }, "parser": "babel-eslint", "env": { @@ -33,6 +28,11 @@ "rules": { "import/no-commonjs": "warn", "import/no-amd": "warn", + "prettier/prettier": ["error", { + "trailingComma": "es5", + "printWidth": 100, + "singleQuote": true + }], "func-names": ["warn", "as-needed"] } }