Skip to content

Instantly share code, notes, and snippets.

@ygweric
Created March 8, 2018 02:51
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 ygweric/ba2931a95bf9a5907a2eff385d8cb607 to your computer and use it in GitHub Desktop.
Save ygweric/ba2931a95bf9a5907a2eff385d8cb607 to your computer and use it in GitHub Desktop.
My vs code setting
{
"python.pythonPath": "~/.virtualenvs/djangosite/bin/python",
"python.linting.pep8Enabled": true,
"python.linting.pep8Args": [
"--ignore=E501"
],
"python.linting.pylintPath": "~/.virtualenvs/djangosite/bin/pylint",
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django"
],
"python.linting.pylintEnabled": true,
"editor.formatOnSave": false,
"editor.rulers": [],
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
".vscode": true,
"**/*.pyc": true
},
"workbench.editor.enablePreview": false,
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"statusBar.background": "#303030",
"statusBar.noFolderBackground": "#222225",
"statusBar.debuggingBackground": "#511f1f"
},
"python.disablePromptForFeatures": [
"pylint",
"pep8"
],
"editor.fontSize": 14,
"editor.tabSize": 2,
"workbench.statusBar.visible": true,
"eslint.enable": true,
"workbench.startupEditor": "newUntitledFile",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": true,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": true
},
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.currentLine.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment