Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monobasic/13ae4f3c53acca9cc867228b1ddd5642 to your computer and use it in GitHub Desktop.
Save monobasic/13ae4f3c53acca9cc867228b1ddd5642 to your computer and use it in GitHub Desktop.
{
"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