Last active
September 29, 2019 07:16
-
-
Save tonybolanyo/dd80f9eb384c56ad2decb976e5586d71 to your computer and use it in GitHub Desktop.
Develop system settings: VS Code, npm defaults
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
init.author.name=Tony G. Bolaño | |
init.author.email=[email protected] | |
init.author.url=https://tonygb.com | |
init.license=MIT |
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
{ | |
"explorer.confirmDelete": false, | |
"python.formatting.provider": "autopep8", | |
"python.linting.pylintArgs": [ | |
"--load-plugins", | |
"pylint_django" | |
], | |
"files.eol": "\n", | |
"gitlens.defaultDateFormat": "DD/MM/YYYY HH:mm:ss", | |
"git.autofetch": true, | |
"files.associations": { | |
"*.geojson": "json" | |
}, | |
"editor.rulers": [ | |
79, | |
120 | |
], | |
"files.autoSave": "onFocusChange", | |
"window.zoomLevel": 0, | |
"gitlens.codeLens.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.renderWhitespace": "none", | |
"breadcrumbs.enabled": false, | |
"editor.minimap.enabled": false, | |
"git.enableSmartCommit": true, | |
"editor.fontFamily": "Monaco, Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe", | |
"[html]": { | |
"editor.tabSize": 2, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.tabSize": 2 | |
}, | |
"[javascript]": { | |
"editor.tabSize": 2 | |
}, | |
"[python]": { | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.formatOnSave": true | |
}, | |
"[vue]": { | |
"editor.tabSize": 2 | |
}, | |
"git.confirmSync": false, | |
"vsicons.projectDetection.autoReload": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment