Skip to content

Instantly share code, notes, and snippets.

@k3karthic
Last active April 23, 2023 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k3karthic/893ae14909c2787e35a921f51815ad6f to your computer and use it in GitHub Desktop.
Save k3karthic/893ae14909c2787e35a921f51815ad6f to your computer and use it in GitHub Desktop.
VSCode Configuration
  • Color Highlight
  • EditorConfig
  • ESLint
  • Gitlens
  • Copilot
  • Python
  • PowerShell
  • Prettier
  • Sourcery
  • XML
  • YAML
  • Remote (SSH)
  • Ruff (charliermarsh)
  • Black (mikoz)
{
"workbench.colorTheme": "Default Dark+",
"workbench.startupEditor": "none",
"telemetry.telemetryLevel": "off",
"redhat.telemetry.enabled": false,
"editor.fontSize": 16,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"diffEditor.ignoreTrimWhitespace": false,
"debug.javascript.autoAttachFilter": "disabled",
"update.enableWindowsBackgroundUpdates": false,
"update.mode": "none",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true,
"python": true,
"typescriptreact": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"git.openRepositoryInParentFolders": "never",
"[python]": {
"editor.defaultFormatter": "mikoz.black-py"
},
"python.linting.mypyEnabled": true,
"python.linting.mypyCategorySeverity.error": "Warning"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment