Skip to content

Instantly share code, notes, and snippets.

@tuvokki
Last active March 24, 2017 15:22
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 tuvokki/c6306f2f09211e237746ff103b88293b to your computer and use it in GitHub Desktop.
Save tuvokki/c6306f2f09211e237746ff103b88293b to your computer and use it in GitHub Desktop.
A set of settings for VSCode
// Place your settings in this file to overwrite the default settings
{
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.cursorStyle": "underline-thin",
"editor.dragAndDrop": true,
"terminal.external.osxExec": "iTerm.app",
"files.exclude": {
"**/.git": true,
"**/.gradle": true,
"node_modules": true,
".gitignore": true,
".editorconfig": true,
".sass-lint.yml": true,
"license.md": true,
"local-proxy.js": true,
"*.json": true,
"config.xml": true,
"build.gradle": true,
"npm-debug.log*": true,
"**/.tmp": true,
"**/.nyc_output": true,
"**/config": true,
"**/hooks": true,
"**/node_modules": true,
"**/platforms": true,
"**/resources": true,
"**/typings": true,
"**/www": true,
"**/build": true,
"**/res": true,
"**/plugins": true,
"**/.vscode": true,
"**/fastlane_config": true,
"**/.fusebox": true,
"**/.DS_Store": true
},
"typescriptHero.resolver.ignorePatterns": [
"**/.tmp"
],
"typescript.check.tscVersion": false,
"eslint.autoFixOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment