Skip to content

Commit

Permalink
VSCode settings (#25)
Browse files Browse the repository at this point in the history
* Add VSCode settings which match some of the clang-format rules.
  • Loading branch information
afoxman authored Apr 1, 2020
1 parent cff564f commit 67126c2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ _ReSharper*/
*.opendb
[Oo]utput/
.vs/
.vscode/

# Ignore files related to CMake
build/
Expand Down
16 changes: 16 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.wordWrapColumn": 120,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true
},
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"**/dist": true
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "none",
"comment": "Add VSCode settings which match some of the clang-format rules.",
"packageName": "@microsoft/mso",
"email": "[email protected]",
"dependentChangeType": "none",
"date": "2020-04-01T21:30:10.523Z"
}

0 comments on commit 67126c2

Please sign in to comment.