Last active
January 8, 2018 09:31
-
-
Save mackjoner/59a0223404b7e908f8c820af139244f8 to your computer and use it in GitHub Desktop.
code config
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
{ | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Menlo", | |
"workbench.colorTheme": "One Dark Pro", | |
"window.zoomLevel": 0, | |
"terminal.integrated.fontFamily": "Droid Sans Mono Dotted for Powerline", | |
"terminal.integrated.fontSize": 12, | |
"typescript.check.npmIsInstalled": false, | |
"workbench.iconTheme": "vscode-icons", | |
// js format | |
"beautify.config": "~/.jsbeautifyrc", | |
"beautify.language": { | |
"js": { | |
"type": [ | |
"javascript", | |
"json" | |
], | |
"filename": [ | |
".jshintrc", | |
".jsbeautify" | |
] | |
}, | |
"css": [ | |
"css", | |
"scss" | |
], | |
"html": [ | |
"htm", | |
"html" | |
] | |
}, | |
// python | |
"python.venvPath": "~/Envs", | |
"python.sortImports.args": ["-rc", "--atomic"], | |
// "python.formatting.formatOnSave": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.formatting.provider": "yapf", | |
// "python.formatting.autopep8Args": ["--max-line-length", "120", "--experimental"], | |
"python.formatting.yapfArgs": [ | |
"--style", | |
"{based_on_style: chromium, indent_width: 4}" | |
], | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment