Skip to content

Commit

Permalink
Replace vscode directory by code workspace file
Browse files Browse the repository at this point in the history
  • Loading branch information
yoriiis committed Dec 29, 2022
1 parent a2218b3 commit 7250bdb
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 63 deletions.
8 changes: 0 additions & 8 deletions .vscode/extensions.json

This file was deleted.

11 changes: 0 additions & 11 deletions .vscode/launch.json

This file was deleted.

44 changes: 0 additions & 44 deletions .vscode/settings.json

This file was deleted.

42 changes: 42 additions & 0 deletions chunks-webpack-plugin.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript][typescript][postcss][html][markdown][json]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.rulers": [100]
},
"files.associations": {
"*.css": "postcss",
"*.html": "html",
"*.ts": "typescript",
"*.json": "json"
},
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true
},
},
"extensions": {
"recommendations": [
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
},
"launch": {
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Node: Nodemon",
"restart": true
}
]
}
}

0 comments on commit 7250bdb

Please sign in to comment.