Skip to content

Commit

Permalink
Turn off trailing whitespace triming in strings (#10646)
Browse files Browse the repository at this point in the history
We have tests with baselines that have trailing whitespaces. Our `trimTrailingWhitespace` setting means that those will get modified automatically, breaking those tests. To fix that, I implemented a vscode feature to avoid triming inside regex and strings, so let's use that.
  • Loading branch information
333fred committed Jul 18, 2024
1 parent d91189f commit f75ab60
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"files.trimTrailingWhitespace": true,
"files.trimTrailingWhitespaceInRegexAndStrings": false,
"files.associations": {
"*.*proj": "xml",
"*.props": "xml",
Expand Down

0 comments on commit f75ab60

Please sign in to comment.