Skip to content

Instantly share code, notes, and snippets.

@maxwelllevin
Last active November 20, 2022 05:23
Show Gist options
  • Save maxwelllevin/9980e0568545378dae0ede4e8e297447 to your computer and use it in GitHub Desktop.
Save maxwelllevin/9980e0568545378dae0ede4e8e297447 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.mypyEnabled": true,
"python.analysis.typeCheckingMode": "strict",
"python.linting.flake8Enabled": false,
"python.formatting.provider": "black",
"git.mergeEditor": true,
"isort.args": [
"--profile",
"black"
],
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment