We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba43730 commit 4f81194Copy full SHA for 4f81194
prettier.config.js
@@ -6,6 +6,12 @@
6
* @type {import("prettier").Config}
7
*/
8
const config = {
9
+ // The default changed from 'es5' to 'all' in Prettier v3. It'd be better
10
+ // if this framework config matched the config we use for projects. And
11
+ // ideally they'd both stay as close as possible to the defaults. But for
12
+ // now it's too disruptive to change the config for projects, and I don't
13
+ // want to change *away* from defaults here. So I'm leaving it as 'all'.
14
+ trailingComma: 'all',
15
bracketSpacing: true,
16
tabWidth: 2,
17
semi: false,
0 commit comments