Created
June 14, 2023 09:33
-
-
Save paulovieira/6a0dbbb67ca6a3132f97b6c98718279a to your computer and use it in GitHub Desktop.
prettierrc for a sveltekit project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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