Skip to content

Instantly share code, notes, and snippets.

@gotpop
Created September 14, 2017 09:55
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 gotpop/ca9b4296fb3cd6ea14d292a00b3f6791 to your computer and use it in GitHub Desktop.
Save gotpop/ca9b4296fb3cd6ea14d292a00b3f6791 to your computer and use it in GitHub Desktop.
{
"workbench.iconTheme": "vscode-icons",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"editor.tabSize": 4,
"files.autoSave": "off",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.detectIndentation": false,
"editor.multiCursorModifier": "ctrlCmd",
"workbench.colorTheme": "Monokai",
"editor.minimap.showSlider": "mouseover",
"terminal.integrated.fontSize": 12,
"editor.minimap.maxColumn": 20,
"terminal.integrated.lineHeight": 1.6,
// "typescript.check.tscVersion": false,
"files.trimTrailingWhitespace": true,
"eslint.options": {
"extends": "airbnb",
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
},
"rules": {
"no-unused-vars": [
1,
{
"argsIgnorePattern": "res|next|^err"
}
],
"func-names": 0,
"no-console": 1,
"space-before-function-paren": 0,
"indent": [
"error",
4
]
}
},
"editor.fontSize": 12,
"window.zoomLevel": 0,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"dist/": false,
"js/hbs": true
},
"html.format.wrapLineLength": 120,
// "problems.autoReveal": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"window.zoomLevel": -1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment