Skip to content

Commit

Permalink
.eslintrc.js: Use trailingComma: "es5" with Prettier
Browse files Browse the repository at this point in the history
This addresses prettier#3469
as outlined in prettier#3469 (comment)

The corresponding formatting changes will be done separately for
clarity's sake.
  • Loading branch information
josephfrazier committed Dec 14, 2017
1 parent 1ba144b commit 0b22329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
"one-var": ["error", "never"],
"prefer-arrow-callback": "error",
"prefer-const": "error",
"prettier/prettier": "error",
"prettier/prettier": ["error", { trailingComma: "es5" }],
"react/no-deprecated": "off",
strict: "error",
"symbol-description": "error",
Expand Down

0 comments on commit 0b22329

Please sign in to comment.