{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.mouseWheelZoom": false,
"editor.renderWhitespace": "trailing",
"editor.wordWrap": "on",
"editor.unicodeHighlight.invisibleCharacters": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.tslint": "explicit",
"source.fixAll.stylelint": "always"
},
"editor.formatOnSave": true,
"editor.suggest.snippetsPreventQuickSuggestions": true,
"editor.accessibilitySupport": "auto",
"editor.stickyScroll.enabled": true,
"files.eol": "\n",
"files.autoSave": "afterDelay",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Material Theme Darker",
"workbench.sideBar.location": "right",
"terminal.integrated.fontFamily": "monospace",
"workbench.startupEditor": "readme",
"window.zoomLevel": 1,
"explorer.confirmDelete": false,
"terminal.integrated.env.osx": {
"NODE_ENV": "development"
},
"git.path": "/opt/homebrew/bin/git",
"git.openRepositoryInParentFolders": "never",
"git.autofetch": true,
"merge-conflict.autoNavigateNextConflict.enabled": true,
"diffEditor.maxComputationTime": 1000,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.experimental.showMoves": true,
"debug.javascript.autoAttachFilter": "always",
"debug.allowBreakpointsEverywhere": true,
"debug.javascript.pickAndAttachOptions": {
"autoAttachChildProcesses": true
},
"javascript.validate.enable": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"html.validate.scripts": false,
"typescript.suggest.paths": true,
"javascript.suggest.paths": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"auto-close-tag.enableAutoCloseTag": true,
"auto-close-tag.activationOnLanguage": ["*"],
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.validate": ["javascript", "typescript", "vue", "html"],
"stylelint.validate": ["css", "less", "vue"],
"auto-rename-tag.activationOnLanguage": [
"html",
"vue",
"liquid",
"javascript",
"jsx"
],
"liveServer.settings.donotShowInfoMsg": true,
"path-intellisense.autoSlashAfterDirectory": true,
"path-intellisense.autoTriggerNextSuggestion": true,
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
},
"todo-tree.general.tags": ["TODO", "FIXME", "NOTE"],
"todo-tree.highlights.customHighlight": {
"TODO": {
"icon": "clock",
"gutterIcon": true,
"fontWeight": "800",
"foreground": "#fff",
"background": "#FFFF00",
"rulerColour": "#FFFF00",
"iconColour": "#FFFF00"
},
"FIXME": {
"icon": "x-circle",
"gutterIcon": true,
"fontWeight": "800",
"foreground": "#fff",
"background": "#FF0000",
"rulerColour": "#FF0000",
"iconColour": "#FF0000"
},
"NOTE": {
"icon": "note",
"gutterIcon": true,
"fontWeight": "800",
"foreground": "#fff",
"background": "#008000",
"rulerColour": "#008000",
"iconColour": "#008000"
}
},
"prettier.documentSelectors": ["*.{html}"],
"vue.autoInsert.dotValue": true
}