Last active
February 2, 2025 04:18
-
-
Save rootVIII/d5700fb229498802c87bdac87f2c872a to your computer and use it in GitHub Desktop.
VSCODE My vscode settings.json
This file contains hidden or 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
{ | |
"[javascript]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "biomejs.biome", | |
}, | |
"[shellscript]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "timonwong.shellcheck", | |
}, | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "ms-python.autopep8", | |
}, | |
"[go]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "golang.go" | |
}, | |
"[terraform]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "hashicorp.terraform" | |
}, | |
"[powershell]": { | |
"editor.defaultFormatter": "ms-vscode.powershell", | |
"editor.formatOnSave": true, | |
"editor.renderWhitespace": "all", | |
"editor.renderControlCharacters": true, | |
"files.trimTrailingWhitespace": true, | |
"files.encoding": "utf8bom", | |
"files.autoGuessEncoding": true | |
}, | |
"[json]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.suggest.insertMode": "replace" | |
}, | |
"[csharp]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "ms-dotnettools.csharp" | |
}, | |
"[cpp]": { | |
"editor.defaultFormatter": "ms-vscode.cpptools" | |
}, | |
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0}", | |
"pylint.args": [ | |
"--disable=missing-module-docstring", | |
"--disable=missing-function-docstring", | |
"--disable=broad-exception-caught", | |
"--disable=consider-using-f-string", | |
"--disable=missing-class-docstring", | |
"--disable=unspecified-encoding", | |
"--disable=consider-using-sys-exit", | |
"--disable=relative-beyond-top-level" | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment