Skip to content

Instantly share code, notes, and snippets.

@coliff
Last active July 18, 2017 06:50
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 coliff/755e8bb8ac05f5d283b41efed13c4725 to your computer and use it in GitHub Desktop.
Save coliff/755e8bb8ac05f5d283b41efed13c4725 to your computer and use it in GitHub Desktop.
VS_Code_Settings.json
// Place your settings in this file to overwrite the default settings
{
"extensions.autoUpdate": true,
"editor.wordWrap": "on",
// "editor.formatOnSave": true,
"html.suggest.ionic": false,
"workbench.iconTheme": "vs-seti",
"telemetry.enableTelemetry": false,
"spellchecker.language": "en_US",
"spellchecker.ignoreWordsList": [
"optimised",
"optimisation"
],
"spellchecker.ignoreRegExp": [
"[A-Z]([A-Z0-9]*[a-z][a-z0-9]*[A-Z]|[a-z0-9]*[A-Z][A-Z0-9]*[a-z])[A-Za-z0-9]*"
],
"spellchecker.ignoreFileExtensions": [
"stylelintrc"
],
"editor.renderWhitespace": "all",
"css.lint.unknownProperties": "ignore",
"css.lint.emptyRules": "ignore",
"editor.minimap.enabled": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"files.associations": {
".csslintrc": "yaml",
".htmlhintrc": "yaml",
".stylelintrc": "yaml"
},
"editor.tabSize": 2,
"[css]": {
"editor.formatOnSave": false,
"editor.formatOnPaste": false
},
"[json]": {
"editor.formatOnSave": false,
"editor.formatOnPaste": true
},
"workbench.startupEditor": "newUntitledFile",
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment