its-personal/.prettierrc.json

24 lines
454 B
JSON
Raw Permalink Normal View History

2024-04-28 11:44:18 +00:00
{
"printWidth": 128,
"useTabs": false,
2024-04-29 02:57:05 +00:00
"tabWidth": 4,
2024-04-28 11:44:18 +00:00
"semi": false,
"singleQuote": true,
"endOfLine": "lf",
"arrowParens": "avoid",
"trailingComma": "none",
"bracketSpacing": true,
"bracketSameLine": true,
"htmlWhitespaceSensitivity": "ignore",
2024-04-29 02:57:05 +00:00
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
2024-04-28 11:44:18 +00:00
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
2024-04-29 02:57:05 +00:00
}