vscode config
extend
- eslint
- git history
- goto node modules
- markdown all in one
- markdownlint
- Markdown Table
vscode setting
{
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "always",
"files.exclude": {
"**/.deploy_git": true,
"**/.vscode": true,
"**/db.json": true,
"**/node_modules": true,
"**/public": true
},
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.autoStash": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"workbench.startupEditor": "welcomePage",
"editor.tabSize": 2,
"editor.suggestSelection": "first",
"editor.minimap.enabled": true,
"editor.renderWhitespace": "none",
"html.format.enable": false,
"css.validate": false,
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true,
"source.fixAll.markdownlint": true
},
}