Skip to content

Commit

Permalink
Remove duplicate prettier.config.js settings from .eslintrc.json (#5087)
Browse files Browse the repository at this point in the history
* chore: remove duplicate prettier.config.js settings from .eslintrc.json

* chore: remove unnecessary brackets now that "prettier/prettier" rule is no longer an array -- this a purely cosmetic change
  • Loading branch information
DoctorDerek committed Sep 1, 2021
1 parent d5c87f9 commit 36a02ed
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,6 @@
"camelcase": ["error", { "allow": ["^unstable_"] }],
"no-unused-vars": [2, { "args": "all", "argsIgnorePattern": "^_" }],
"no-warning-comments": 0,
"prettier/prettier": [
"error",
{
"semi": false,
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "es5",
"bracketSpacing": true,
"parser": "flow"
}
]
"prettier/prettier": "error"
}
}

0 comments on commit 36a02ed

Please sign in to comment.