Skip to content

Instantly share code, notes, and snippets.

@paulovieira
Created June 14, 2023 09:33
Show Gist options
  • Save paulovieira/6a0dbbb67ca6a3132f97b6c98718279a to your computer and use it in GitHub Desktop.
Save paulovieira/6a0dbbb67ca6a3132f97b6c98718279a to your computer and use it in GitHub Desktop.
prettierrc for a sveltekit project
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"quoteProps": "preserve",
"singleAttributePerLine": false,
"svelteStrictMode": true,
"svelteIndentScriptAndStyle": false,
"htmlWhitespaceSensitivity": "strict",
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [
{
"files": "*.svelte",
"options": { "parser": "svelte" }
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment