Created
July 24, 2023 09:46
-
-
Save ngtrvu/c32a9484bde6d20703137de616186f4b to your computer and use it in GitHub Desktop.
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.defaultFormatter": "esbenp.prettier-vscode", | |
"terminal.integrated.inheritEnv": false, | |
"terminal.integrated.fontSize": 13, | |
"go.toolsManagement.autoUpdate": true, | |
"editor.fontSize": 13, | |
"debug.console.fontSize": 13, | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
"python.formatting.provider": "black", | |
"python.formatting.blackArgs": ["--line-length", "100"], | |
"python.formatting.autopep8Args": [ | |
"--max-line-length", | |
"100", | |
"--experimental" | |
], | |
"python.formatting.yapfArgs": [ | |
"--style", | |
"{based_on_style: google, column_limit: 100, indent_width: 4}" | |
], | |
"python.linting.enabled": true, | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.formatOnSave": true, | |
"editor.rulers": [100, 120], | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true, | |
"source.fixAll": true | |
} | |
}, | |
"[go]": { | |
"editor.defaultFormatter": "golang.go", | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.formatOnSave": false, | |
"editor.detectIndentation": false, | |
}, | |
"[go.mod]": { | |
"editor.defaultFormatter": "golang.go", | |
"editor.tabSize": 4 | |
}, | |
"[yaml]": { | |
"editor.formatOnSave": false, | |
"editor.tabSize": 2 | |
}, | |
"[proto]": { | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2 | |
}, | |
"[bazel]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "StackBuild.bazel-stack-vscode", | |
"editor.tabSize": 4 | |
}, | |
"terminal.integrated.tabs.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment