Last active
May 10, 2023 02:14
-
-
Save kubosuke/144a285a6868c6b3c7da268c79cdc898 to your computer and use it in GitHub Desktop.
vscode.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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