Skip to content

Instantly share code, notes, and snippets.

@rootVIII
Last active June 29, 2024 23:38
Show Gist options
  • Save rootVIII/a8ac0113bcf5fecbf6aecd9468f9c4f0 to your computer and use it in GitHub Desktop.
Save rootVIII/a8ac0113bcf5fecbf6aecd9468f9c4f0 to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"[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