Skip to content

Instantly share code, notes, and snippets.

@danielsamuels
Last active November 13, 2017 14:01
Show Gist options
  • Save danielsamuels/ee910c0b9445776d59f4592d139bfb30 to your computer and use it in GitHub Desktop.
Save danielsamuels/ee910c0b9445776d59f4592d139bfb30 to your computer and use it in GitHub Desktop.
VSCode settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.insertSpaces": true,
"editor.renderWhitespace": "none",
"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,
"**/__pycache__": 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",
"[css]": {
"editor.tabSize": 2
// "editor.quickSuggestions": {
// "other": false,
// "comments": false,
// "strings": false
// }
},
"[html]": {
"editor.tabSize": 2,
"editor.quickSuggestions": false
},
"window.newWindowDimensions": "default",
"files.associations": {
"nginx_site_config": "NGINX",
"*.css": "css,postcss"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
// "editor.quickSuggestions": {
// "other": true,
// "comments": false,
// "strings": true
// },
"editor.rulers": [
80
],
"files.insertFinalNewline": true,
"extensions.autoUpdate": true,
"editor.stablePeek": true,
"editor.minimap.enabled": false,
"extensions.ignoreRecommendations": false,
"workbench.commandPalette.preserveInput": true,
"emmet.includeLanguages": {
"postcss": "css",
"nunjucks": "html"
},
"editor.autoIndent": true,
"window.closeWhenEmpty": true,
"css.colorDecorators.enable": false,
"scss.colorDecorators.enable": false,
"editor.tabSize": 2,
"[python]": {
"editor.tabSize": 4
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontWeight": "300",
"window.nativeTabs": true,
"python.linting.lintOnSave": false,
"GitHubIssues.assignee": "all",
"GitHubIssues.authToken": "c9429033ed585066fbf906453f0ff1f788672155",
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true
// "emmet.triggerExpansionOnTab": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment