Skip to content

Commit

Permalink
chore: exclude files from vscode explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed Jun 7, 2023
1 parent 27a4130 commit 91cfa5e
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,18 @@
},
"editor.formatOnSave": true,
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
"**/.next": false,
"**/node_modules": false,
"**/dist": false,
"**/coverage": false,
"**/playwright-report": false,
"**/test-results": false
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.next": true,
"**/node_modules": true,
"**/dist": true,
"**/coverage": true,
"**/playwright-report": true,
"**/test-results": true,
"**/*.tsbuildinfo": true
}
}

0 comments on commit 91cfa5e

Please sign in to comment.