Last active
June 29, 2024 23:38
-
-
Save rootVIII/a8ac0113bcf5fecbf6aecd9468f9c4f0 to your computer and use it in GitHub Desktop.
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" | |
}, | |
"[json]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.suggest.insertMode": "replace" | |
}, | |
"[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