Skip to content

Commit

Permalink
Recommend explorer-exclude & exclude hidden files
Browse files Browse the repository at this point in the history
  • Loading branch information
aekasitt committed Apr 27, 2023
1 parent b15c07b commit e80ac61
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"vue.volar",
"wayou.vscode-todo-highlight"
"wayou.vscode-todo-highlight",
"PeterSchmalfeldt.explorer-exclude"
],
"unwantedRecommendations": [
"octref.vetur",
Expand Down
21 changes: 20 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,24 @@
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"]
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
".editorconfig": true,
".eslintignore": true,
".eslintrc.js": true,
".gitignore": true,
".npmrc": true,
".postcssrc.js": true,
".quasar": true,
".vscode": true,
"dist": true,
"node_modules": true
},
"explorerExclude.backup": {}
}

0 comments on commit e80ac61

Please sign in to comment.