We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031e76b commit 211dab7Copy full SHA for 211dab7
package.json
@@ -898,6 +898,11 @@
898
"type": "boolean",
899
"default": false,
900
"markdownDescription": "Use correct casing for cmdlets."
901
+ },
902
+ "powershell.codeFormatting.removeTrailingWhitespace": {
903
+ "type": "boolean",
904
+ "default": false,
905
+ "markdownDescription": "Removes trailing whitespace from the end of a line."
906
}
907
908
},
src/settings.ts
@@ -94,6 +94,7 @@ class CodeFormattingSettings extends PartialSettings {
94
alignPropertyValuePairs = true;
95
useConstantStrings = false;
96
useCorrectCasing = false;
97
+ removeTrailingWhitespace = false;
98
99
100
class ScriptAnalysisSettings extends PartialSettings {
0 commit comments