Skip to content

Instantly share code, notes, and snippets.

@danielsamuels
Last active May 16, 2017 15:35
Show Gist options
  • Save danielsamuels/1d3a776070dfc65217cd32a9440ec2f5 to your computer and use it in GitHub Desktop.
Save danielsamuels/1d3a776070dfc65217cd32a9440ec2f5 to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Inconsolata",
"editor.fontSize": 16,
"editor.insertSpaces": true,
"editor.renderWhitespace": false,
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/htmlcov/*": true,
"**/js/build/*": true,
"**/migrations/*": true,
"**/*.svg": true,
"**/build/*.css": true,
"**/.venv/*": true,
"**/build/*": true,
"**/*.js.map": true,
"**/static/js/app.js": true,
"**/.git/*": true,
"**/*.min.js": true,
"**/node_modules/*": true,
"**/ckeditor/*": true,
"**/frontend/*": true,
"**/static/css/*": true,
"**/ui-kit/*": true,
"**/*.csv": true,
"**/*.log": true,
"**/*.xml": true,
"**/*.json": true,
"**/*.pyc": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.venv/*": true,
"**/.git/*": true,
"**/node_modules/*": true,
"**/*.pyc": true,
"**/.vscode": true
},
"window.zoomLevel": 0,
"workbench.colorTheme": "Blackboard",
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"python.pythonPath": "${workspaceRoot}/../.venv/bin/python",
"python.linting.mypyArgs": [
"--ignore-missing-imports",
"--follow-imports=silent",
"--load-plugins pylint_django,pylint_mccabe",
"--ignore=migrations,tests"
],
"python.linting.pylintCategorySeverity.refactor": "Error",
"[py]": {
"editor.formatOnSave": true
},
"[css]": {
"editor.tabSize": 2
},
"workbench.welcome.enabled": false,
"window.newWindowDimensions": "default",
"files.associations": {
"nginx_site_config": "NGINX",
"*.css": "css,postcss"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
"gitlens.blame.annotation.activeLine": "hover",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.rulers": [
80
],
"files.insertFinalNewline": true,
"extensions.autoUpdate": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment