Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mohi7solanki/c5cd7bb3a4ce973bee57fa70890aff4f to your computer and use it in GitHub Desktop.
Save mohi7solanki/c5cd7bb3a4ce973bee57fa70890aff4f to your computer and use it in GitHub Desktop.
vs
{
"editor.fontSize": 18,
"files.autoSave": "off",
"python.linting.enabled": true,
"python.linting.pylintCategorySeverity.convention": "Error",
"python.linting.pylintCategorySeverity.refactor": "Error",
"python.linting.pylintUseMinimalCheckers": false,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontFamily": "Dejavu Sans Mono",
"window.zoomLevel": 1,
"python.linting.pylintArgs": [
"--disable=C0111",
"--disable=invalid-name",
"--disable=R0903",
"--load-plugins",
"pylint_django",
"pylint_celery"
],
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"terminal.integrated.fontSize": 17,
"python.formatting.provider": "black",
"editor.rulers": [
72,
79
],
"files.exclude": {
".vscode": true,
"**/__pycache__": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/*.pyc": true,
"**/CVS": true,
"**/venv": true
},
"search.exclude": {
"**/venv": true
},
"window.titleBarStyle": "custom",
"explorer.confirmDelete": false,
"editor.suggestSelection": "first",
"python.jediEnabled": false,
"python.linting.pylintEnabled": true,
"search.location": "sidebar",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment