Skip to content

Instantly share code, notes, and snippets.

@vtno
Last active September 14, 2017 04:47
Show Gist options
  • Save vtno/3143787a277f1037fe9fa74404b16fbc to your computer and use it in GitHub Desktop.
Save vtno/3143787a277f1037fe9fa74404b16fbc to your computer and use it in GitHub Desktop.
My VSCODE setting.
{
"window.zoomLevel": 1,
"editor.tabCompletion": false,
"editor.tabSize": 2,
"files.insertFinalNewline": false,
"editor.scrollBeyondLastLine": false,
"stylelint.enable": true,
"stylelint.config": {
"extends": "stylelint-config-standard",
"rules": {
"selector-pseudo-class-no-unknown": [ true, {
"ignorePseudoClasses": [ "export", "import", "global", "local" ]
}],
"property-no-unknown": [ true, {
"ignoreProperties": ["composes"]
}],
"at-rule-no-unknown": [ true, {
"ignoreAtRules": ["value", "mixin", "include", "extend"]
}]
}
},
"css.validate": false,
"files.watcherExclude": {
".hg": true,
"**/tmp": true,
"**/node_modules": true
},
"files.exclude": {
"**/tmp": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"workbench.colorTheme": "Darktooth",
"gitlens.advanced.git": "/usr/local/bin/hub",
"files.autoSave": "onFocusChange",
"editor.renderIndentGuides": false,
"editor.cursorStyle": "block",
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.cursorBlinking": "phase",
"files.trimTrailingWhitespace": true,
"editor.fontSize": 12,
// "editor.fontLigatures": true,
"vscode_custom_css.imports": ["file:///Users/vtno/CodeSnippets/VSCodeTheme/style.css"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment