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,23 +7,16 @@
"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": [
120
],
"workbench.colorCustomizations": { "workbench.colorCustomizations": {
"editorRuler.foreground": "#AA5C39" "editorRuler.foreground": "#AA5C39"
}, },
"files.exclude": {
"**/.devt": true,
"config": true,
"v1": true,
"script": true,
"source": true,
},
"javascript.format.enable": true, "javascript.format.enable": true,
"java.dependency.packagePresentation": "hierarchical", "java.dependency.packagePresentation": "hierarchical",
"java.dependency.showMembers": true, "java.dependency.showMembers": true,
"java.maven.downloadSources": true,
"java.format.enabled": true,
// "java.format.onType.enabled": true,
"java.dependency.syncWithFolderExplorer": false, "java.dependency.syncWithFolderExplorer": false,
"maven.executable.preferMavenWrapper": false, "maven.executable.preferMavenWrapper": false,
"java.format.settings.url": ".vscode/formatting.xml", "java.format.settings.url": ".vscode/formatting.xml",
@ -34,9 +27,15 @@
"command": "formatter:format" "command": "formatter:format"
} }
], ],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[xml]": { "[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml" "editor.defaultFormatter": "redhat.vscode-xml"
},
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
} }
} }
} }

Loading…
Cancel
Save