Last active
July 18, 2017 06:50
-
-
Save coliff/755e8bb8ac05f5d283b41efed13c4725 to your computer and use it in GitHub Desktop.
VS_Code_Settings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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