zed-note/konfigurasi_zed.md

47 lines
824 B
Markdown

Jika Ingin saat di save tidak usah di format bisa di tambahkan baris pada file .prettierc
```
"vueIndentScriptAndStyle": true
```
Contoh seperti ini
```
{
"useTabs": true,
"tabWidth": 4,
"vueIndentScriptAndStyle": true
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
```
Sedangkan untuk membuat defaul quote menjadi petik ' bisa menggunakan
```
"singleQuote": true,
```
Contoh settingan :
```
{
"useTabs": true,
"singleQuote": true,
"tabWidth": 4,
"vueIndentScriptAndStyle": true
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
```