HOTFIX: Fix Codacy ESLint configuration

This commit is contained in:
Igor Gassmann 2018-03-01 16:08:43 -05:00
parent 1b729496c9
commit 749039006a

View file

@ -11,12 +11,7 @@
"webpack": { "webpack": {
"config": "webpack.renderer.additions.js" "config": "webpack.renderer.additions.js"
} }
}, }
"prettier/prettier": ["error", {
"trailingComma": "es5",
"printWidth": 100,
"singleQuote": true
}]
}, },
"parser": "babel-eslint", "parser": "babel-eslint",
"env": { "env": {
@ -33,6 +28,11 @@
"rules": { "rules": {
"import/no-commonjs": "warn", "import/no-commonjs": "warn",
"import/no-amd": "warn", "import/no-amd": "warn",
"prettier/prettier": ["error", {
"trailingComma": "es5",
"printWidth": 100,
"singleQuote": true
}],
"func-names": ["warn", "as-needed"] "func-names": ["warn", "as-needed"]
} }
} }