Skip to content

Instantly share code, notes, and snippets.

@rootVIII
Last active July 11, 2022 19:01
Show Gist options
  • Save rootVIII/d5700fb229498802c87bdac87f2c872a to your computer and use it in GitHub Desktop.
Save rootVIII/d5700fb229498802c87bdac87f2c872a to your computer and use it in GitHub Desktop.
VSCODE My vscode settings.json
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.python"
},
"[go]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "golang.go"
},
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"javascript.format.semicolons": "insert",
"javascript.preferences.quoteStyle": "single",
"javascript.suggest.completeFunctionCalls": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript"
],
"debug.javascript.suggestPrettyPrinting": false,
"javascript.referencesCodeLens.enabled": true,
"javascript.referencesCodeLens.showOnAllFunctions": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--skip-string-normalization",
"--line-length",
"100"
],
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"workbench.colorTheme": "Default High Contrast",
"editor.renderLineHighlight": "gutter",
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment