Skip to content

Instantly share code, notes, and snippets.

@kubosuke
Last active May 10, 2023 02:14
Show Gist options
  • Save kubosuke/144a285a6868c6b3c7da268c79cdc898 to your computer and use it in GitHub Desktop.
Save kubosuke/144a285a6868c6b3c7da268c79cdc898 to your computer and use it in GitHub Desktop.
vscode.json
{
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.fontLigatures": true,
"editor.letterSpacing": 0.3,
"editor.smoothScrolling": true,
"workbench.colorTheme": "GitHub Dark Default",
"workbench.preferredDarkColorTheme": "GitHub Dark Default",
"workbench.preferredHighContrastColorTheme": "GitHub Dark Default",
"workbench.preferredHighContrastLightColorTheme": "GitHub Dark Default",
"workbench.preferredLightColorTheme": "GitHub Dark Default",
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.python"
},
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"python.linting.flake8Args": [
"--max-line-length=120",
"--ignore=E402,F841,F401,E302,E305, E203",
],
"git.openRepositoryInParentFolders": "always",
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment