Skip to content

Commit

Permalink
chore: Exclude unnecessary files and directories from version control
Browse files Browse the repository at this point in the history
  • Loading branch information
Abourass committed Sep 2, 2024
1 parent 12904c8 commit ef93f35
Show file tree
Hide file tree
Showing 2 changed files with 184 additions and 132 deletions.
26 changes: 26 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
"**/.*": false,
"eslint*.*": false,
"**/tmp/**": false,
"**/node_modules/**": false,
"**/.git/objects/**": false,
"**/*.d.ts": false,
"**/*.js": false,
"**/*.js.map": false,
"**/*.lock": false,
"**/coverage": false,
"**/examples": false,
"**/SECURITY.md": false,
"**/CHANGELOG.md": false,
"**/logs": false,
"**/playwright.config.ts": false
},
"explorerExclude.backup": {}
}
Loading

0 comments on commit ef93f35

Please sign in to comment.