Skip to content

Commit

Permalink
Add svelte settings to .prettierrc (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimfeld authored and techniq committed Jan 11, 2024
1 parent fe4fd1c commit e4524b9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"singleQuote": true,
"printWidth": 100,
"trailingComma": "es5"
"trailingComma": "es5",
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}

0 comments on commit e4524b9

Please sign in to comment.