- Color Highlight
- EditorConfig
- ESLint
- Gitlens
- Copilot
- Python
- PowerShell
- Prettier
- Sourcery
- XML
- YAML
- Remote (SSH)
- Ruff (charliermarsh)
- Black (mikoz)
Last active
April 23, 2023 12:14
-
-
Save k3karthic/893ae14909c2787e35a921f51815ad6f to your computer and use it in GitHub Desktop.
VSCode Configuration
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
{ | |
"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