Skip to content

Instantly share code, notes, and snippets.

@mohi7solanki
Created November 20, 2018 17:36
Show Gist options
  • Save mohi7solanki/df493c52ffec0d430afdeab58067667d to your computer and use it in GitHub Desktop.
Save mohi7solanki/df493c52ffec0d430afdeab58067667d to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 18,
"workbench.iconTheme": "vscode-icons",
"files.autoSave": "off",
"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=R0903"],
"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
},
"python.linting.pylintPath": "~/.local/bin/pylint",
"search.exclude": {
"**/venv": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment