Fixed workspace to use redhat formatters for xml and yaml - good stuff anyway

sidewalk-01
Edward M. Kagan 5 years ago
parent f64d0dc63f
commit 0b67b20009

@ -7,36 +7,35 @@
"settings": { "settings": {
"java.configuration.updateBuildConfiguration": "automatic", "java.configuration.updateBuildConfiguration": "automatic",
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "redhat.java", "editor.rulers": [120],
"editor.rulers": [ "workbench.colorCustomizations": {
120 "editorRuler.foreground": "#AA5C39"
], },
"workbench.colorCustomizations": { "javascript.format.enable": true,
"editorRuler.foreground": "#AA5C39" "java.dependency.packagePresentation": "hierarchical",
}, "java.dependency.showMembers": true,
"files.exclude": { "java.maven.downloadSources": true,
"**/.devt": true, "java.format.enabled": true,
"config": true, // "java.format.onType.enabled": true,
"v1": true, "java.dependency.syncWithFolderExplorer": false,
"script": true, "maven.executable.preferMavenWrapper": false,
"source": true, "java.format.settings.url": ".vscode/formatting.xml",
}, "java.format.settings.profile": "2pm.tech",
"javascript.format.enable": true, "maven.terminal.favorites": [
"java.dependency.packagePresentation": "hierarchical", {
"java.dependency.showMembers": true, "alias": "format",
"java.dependency.syncWithFolderExplorer": false, "command": "formatter:format"
"maven.executable.preferMavenWrapper": false, }
"java.format.settings.url": ".vscode/formatting.xml", ],
"java.format.settings.profile": "2pm.tech", "editor.defaultFormatter": "esbenp.prettier-vscode",
"maven.terminal.favorites": [ "[xml]": {
{ "editor.defaultFormatter": "redhat.vscode-xml"
"alias": "format", },
"command": "formatter:format" "[java]": {
} "editor.defaultFormatter": "redhat.java"
], },
"[xml]": { "[yaml]": {
"editor.defaultFormatter": "redhat.vscode-xml" "editor.defaultFormatter": "redhat.vscode-yaml"
} }
} }
} }

Loading…
Cancel
Save