Skip to content

Commit

Permalink
Explicitly configure identation settings for VSCode (#2450)
Browse files Browse the repository at this point in the history
This adds explicit configuration to `.vscode/settings.json` so we
use two spaces for indentation, rather than relying on the user's
own settings or automatic detection.
  • Loading branch information
timrogers authored May 19, 2022
1 parent 218f89f commit bbddb9d
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"files.exclude": {
"**/bin": true,
"**/obj": true,
"**/packaging": true,
"**/coverage-results": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true
"files.exclude": {
"**/bin": true,
"**/obj": true,
"**/packaging": true,
"**/coverage-results": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true
}

0 comments on commit bbddb9d

Please sign in to comment.