В VS Code у меня установлено и включено Beautify
.
https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify
Я протестировал файл php,
Когда я нажимаю «Сохранить», я не могу получить повторный отступ или украшение.
Что я пропустил?
Код> Пользователь> Настройки. json
{
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 1,
"editor.fontSize": 14,
"terminal.integrated.fontSize": 11,
"extensions.ignoreRecommendations": true,
// syncedSideBar
"explorer.autoReveal": true,
// Is git enabled
"git.enabled": false,
// Path to the git executable
"git.path": null,
// Whether auto fetching is enabled.
"git.autofetch": false,
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": true,
"eslint.autoFixOnSave": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"workbench.colorTheme": "Monokai",
"javascript.updateImportsOnFileMove.enabled": "always",
"openInGitHub.providerType": "github",
"gitlens.advanced.messages": {
"suppressGitDisabledWarning": true
},
"liveServer.settings.donotShowInfoMsg": true,
"window.closeWhenEmpty": false,
"editor.emptySelectionClipboard": false,
"editor.dragAndDrop": false,
"editor.fontFamily": "Source Code Pro",
"editor.selectionHighlight": false,
"window.openFilesInNewWindow": "off",
"workbench.editor.enablePreview": true,
"editor.scrollBeyondLastLine": false,
"editor.mouseWheelScrollSensitivity": 5,
"window.title": "${activeEditorFull}${separator}${rootName}",
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"editor.useTabStops": true,
"editor.wordWrap": "on",
"editor.formatOnPaste": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"vsicons.dontShowNewVersionMessage": true,
"files.autoSave": "afterDelay",
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Я просто хочу переопределить код при сохранении.