Skip to content

Instantly share code, notes, and snippets.

@rogerlin0330
Last active July 24, 2019 14:38
Show Gist options
  • Save rogerlin0330/5d39b8a6f010ce226320e6097a958c64 to your computer and use it in GitHub Desktop.
Save rogerlin0330/5d39b8a6f010ce226320e6097a958c64 to your computer and use it in GitHub Desktop.
Sample settings for Visual Studio Code
{
"python.formatting.provider": "black",
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--ignore=E501",
"--verbose"
],
"editor.fontSize": 13,
"editor.formatOnSave": true,
"python.jediEnabled": false,
"python.linting.pylintEnabled": true,
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautifyrc"
]
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html"
]
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.fontFamily": "'Menlo', 'Monaco', 'Courier New', 'monospace'",
"vs-kubernetes": {
"vs-kubernetes.helm-path": "/Users/rogerlin/.vs-kubernetes/tools/helm/darwin-amd64/helm",
"vs-kubernetes.draft-path": "/Users/rogerlin/.vs-kubernetes/tools/draft/darwin-amd64/draft",
"vs-kubernetes.minikube-path": "/Users/rogerlin/.vs-kubernetes/tools/minikube/darwin-amd64/minikube",
"vs-kubernetes.kubectl-path": "/Users/rogerlin/.vs-kubernetes/tools/kubectl/kubectl"
},
"team.showWelcomeMessage": false,
"workbench.iconTheme": "material-icon-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment