Skip to content

Commit

Permalink
Update prettier.config.js based on latest JavaScript standards
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrea committed Dec 11, 2023
1 parent f5edd38 commit ec8cb28
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"useTabs": false,
"tabWidth": 2,
"semi": false,
"trailingComma": "es5",
"proseWrap": "preserve",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"singleQuote": true
}
"trailingComma": "all",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"proseWrap": "preserve"
}

0 comments on commit ec8cb28

Please sign in to comment.