25 lines
439 B
Markdown
25 lines
439 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,
|
|
"singleQuote": true,
|
|
"vueIndentScriptAndStyle": true
|
|
"trailingComma": "none",
|
|
"printWidth": 100,
|
|
"plugins": ["prettier-plugin-svelte"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.svelte",
|
|
"options": {
|
|
"parser": "svelte"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
``` |