Skip to content

Commit

Permalink
Merge pull request #625 from SAFE-Stack/exclude-files
Browse files Browse the repository at this point in the history
Hide project / output / cache files from VS Code
  • Loading branch information
jwthomson authored Aug 30, 2024
2 parents dc30e03 + 6db3029 commit 1f1c37a
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion Content/default/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,26 @@
"tailwindCSS.experimental.classRegex": [
"\\.className\\s+\"([^\"]*)\"",
["\\.className\\s+\\[([^\\]]*)\\]", "\"([^\"]*)\""]
]
],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.vs": true,
"**/.vscode": true,
"**/.idea": true,
"**/.ionide": true,
"**/.paket": true,
"**/.fake": true,
"**/.farmer": true,
"**/paket-files": true,
"**/node_modules": true,
"**/bin": true,
"**/obj": true,
"**/output": true,
"**/deploy": true,
}
}

0 comments on commit 1f1c37a

Please sign in to comment.