Created
August 31, 2019 15:30
-
-
Save Swalloow/91b267b2d91df12775f9905cb6fdcd71 to your computer and use it in GitHub Desktop.
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.tabSize": 4, | |
"editor.detectIndentation": true, | |
"editor.formatOnSave": true, | |
"editor.fontFamily": "D2Coding, Menlo, Monaco, 'Courier New', monospace", | |
"workbench.startupEditor": "welcomePage", | |
"terminal.integrated.rendererType": "dom", | |
"terminal.external.osxExec": "iTerm2", | |
"terminal.integrated.fontFamily": "D2Coding", | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"files.exclude": { | |
"**/__pycache__": true, | |
"**/.idea": true, | |
"**/.ipynb_checkpoints": true, | |
"**/node_modules": true | |
}, | |
// javascript settings | |
"javascript.format.enable": false, | |
"eslint.autoFixOnSave": false, | |
"eslint.enable": true, | |
"eslint.validate": [ | |
"javascript", | |
{ "autoFix": true, "language": "vue" }, | |
"html" | |
], | |
"[javascript]": { | |
"editor.tabSize": 2 | |
}, | |
// python settings | |
"python.linting.enabled": true, | |
"python.venvPath": "~/.pyenv", | |
"python.formatting.provider": "autopep8", | |
"python.formatting.autopep8Path": "~/.pyenv/versions/python36/bin/autopep8", | |
"python.formatting.autopep8Args": ["--max-line-length=90", "--indent-size=4"], | |
"python.pythonPath": "/Users/sktelecom/.pyenv/versions/python36/bin/python", | |
"window.zoomLevel": 0, | |
"editor.suggestSelection": "first", | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "all", | |
"prettier.tabWidth": 2, | |
"files.insertFinalNewline": true, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment