1
mirror of https://github.com/interstellar750/hexo_s synced 2024-10-18 16:23:50 +08:00
hexo_s/.prettierrc.json

28 lines
470 B
JSON
Raw Permalink Normal View History

2022-10-15 22:50:57 +08:00
{
"printWidth": 128,
"useTabs": false,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"endOfLine": "lf",
"arrowParens": "avoid",
"trailingComma": "none",
"bracketSpacing": true,
"bracketSameLine": true,
"htmlWhitespaceSensitivity": "ignore",
"plugins": [
"prettier-plugin-svelte"
],
"pluginSearchDirs": [
"."
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
2022-10-15 22:50:57 +08:00
}