Created
June 1, 2020 19:06
-
-
Save monobasic/13ae4f3c53acca9cc867228b1ddd5642 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Nord", | |
"editor.fontFamily": "Hack", | |
"editor.fontSize": 14, | |
"terminal.integrated.fontFamily": "Hack", | |
"terminal.integrated.fontSize": 12, | |
"workbench.startupEditor": "newUntitledFile", | |
"files.trimTrailingWhitespace": true, | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"vue": "html", | |
"django-html": "html" | |
}, | |
"eslint.enable": true, //Enable eslint | |
"eslint.options": { | |
"extensions": [ | |
//List of file extensions to activate eslint | |
".html", | |
".js", | |
".vue", | |
".jsx" | |
] | |
}, | |
"eslint.validate": ["html", "vue", "javascript", "javascriptreact"], | |
"eslint.run": "onSave", | |
"css.validate": false, | |
"less.validate": false, | |
"scss.validate": false, | |
"jest.pathToJest": "npm run test:unit --", | |
"jest.showCoverageOnLoad": true, | |
"editor.tabSize": 2, | |
"editor.formatOnSave": true, | |
"window.zoomLevel": 0, | |
"csharp.suppressDotnetInstallWarning": true, | |
"gitlens.hovers.currentLine.over": "line", | |
"explorer.openEditors.visible": 0, | |
// "jest.debugMode": true, | |
"vetur.format.defaultFormatter.js": "vscode-typescript", | |
"vetur.format.defaultFormatter.html": "js-beautify-html", | |
"editor.suggestSelection": "first", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"editor.renderControlCharacters": false, | |
"gitlens.codeLens.recentChange.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"csharp.referencesCodeLens.enabled": false, | |
"gitlens.codeLens.authors.enabled": false, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment