Skip to content

Instantly share code, notes, and snippets.

@skobba
Created August 12, 2020 10:25
Show Gist options
  • Save skobba/f557688ebf9dc7ac6caa21613042d51f to your computer and use it in GitHub Desktop.
Save skobba/f557688ebf9dc7ac6caa21613042d51f to your computer and use it in GitHub Desktop.
VS Code Settings File
{
"LineCount.excludes": [
"**/.vscode/**",
"**/node_modules/**",
"**/dist/**"
],
"git.enableSmartCommit": true,
"git.confirmSync": false,
"window.zoomLevel": -1,
"search.exclude": {
"**/.git": true,
"**/dist": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true
},
"explorer.confirmDragAndDrop": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"dart.flutterSdkPath": "/Users/gjermund/flutter",
"git.allowForcePush": true,
"git.autofetch": true,
"eslint.alwaysShowStatus": true,
"editor.tabSize": 2,
"workbench.colorTheme": "Visual Studio Dark",
"eslint.validate": [
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.formatOnSave": false,
"eslint.autoFixOnSave": true,
"workbench.startupEditor": "newUntitledFile",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment