Nếu chúng ta đang nói về Visual Studio Code ngày nay, bạn đặt một định dạng mặc định trong settings.json
:
// Defines a default formatter which takes precedence over all other formatter settings.
// Must be the identifier of an extension contributing a formatter.
"editor.defaultFormatter": null,
Trỏ đến mã định danh của bất kỳ tiện ích mở rộng nào đã cài đặt, tức là
"editor.defaultFormatter": "esbenp.prettier-vscode"
Bạn cũng có thể làm như vậy theo định dạng cụ thể :
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[sass]": {
"editor.defaultFormatter": "michelemelluso.code-beautifier"
},
Cũng xem tại đây .
Bạn cũng có thể gán các phím khác cho các định dạng khác nhau trong phím tắt của mình ( keybindings.json
). Theo mặc định, nó đọc:
{
"key": "shift+alt+f",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
}
Cuối cùng, nếu bạn quyết định sử dụng plugin Prettierprettier.rc
và bạn muốn thụt lề khác nhau cho html, scss, json ...
{
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"useTabs": false,
"overrides": [
{
"files": "*.component.html",
"options": {
"parser": "angular",
"tabWidth": 4
}
},
{
"files": "*.scss",
"options": {
"parser": "scss",
"tabWidth": 2
}
},
{
"files": ["*.json", ".prettierrc"],
"options": {
"parser": "json",
"tabWidth": 4
}
}
]
}