Skip to content

Commit

Permalink
Add excludes for VS and Rider junk.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Jan 12, 2024
1 parent e29bb7f commit 2835e59
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .fleet/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"files.exclude": [
"out"
"out",
".idea",
".vs"
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/out
.idea
.vs
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"files.exclude": {
"out": true
"out": true,
"**/.idea": true,
"**/.vs": true
}
}

0 comments on commit 2835e59

Please sign in to comment.