Last active
February 18, 2020 06:34
-
-
Save sachin-philip/b011a0d8cc80662b44df235ade3b9adb 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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.fontFamily": "FiraCode-Retina", | |
"editor.fontLigatures": true, | |
"editor.fontWeight": "100", | |
"editor.scrollBeyondLastLine": false, | |
"editor.tabSize": 4, | |
"editor.wordWrap": "on", | |
"files.autoSaveDelay": 1000, | |
"search.exclude": { | |
"**/node_modules": false, | |
"**/yarn.lock": false, | |
"package.lock": false, | |
"**/bower_components": false | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.tslint": true | |
}, | |
"files.exclude": { | |
"**/*.pyc": true, | |
"**/*.map": true, | |
".vscode": true, | |
".idea": true, | |
"**/node_modules/eslint*": true, | |
"**/node_modules/is-*": true, | |
"**/node_modules/.-*": true, | |
"**/node_modules/array-*": true, | |
"**/node_modules/babel-*": true, | |
"**/node_modules/@babel*": true, | |
"**/node_modules/@jest*": true, | |
"**/node_modules/@material-ui*": true, | |
"**/node_modules/@types*": true, | |
"**/node_modules/@node*": true, | |
"**/node_modules/@date*": true, | |
"**/node_modules/browserify-*": true, | |
"**/node_modules/cli-*": true, | |
"**/node_modules/expand-*": true, | |
"**/node_modules/get-*": true, | |
"**/node_modules/postcss-*": true, | |
"**/node_modules/glob-*": true, | |
"**/node_modules/global-*": true, | |
"**/node_modules/has-*": true, | |
"**/node_modules/http-*": true, | |
"**/node_modules/map-*": true, | |
"**/node_modules/mem-*": true, | |
"**/node_modules/node-*": true, | |
"**/node_modules/object-*": true, | |
"**/node_modules/os-*": true, | |
"**/node_modules/p-*": true, | |
"**/node_modules/url-*": true, | |
"**/node_modules/webpack-*": true, | |
"**/node_modules/string-*": true, | |
"**/node_modules/source-*": true, | |
"**/node_modules/ansi-*": true, | |
"**/node_modules/arr-*": true, | |
"**/node_modules/json-*": true, | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"workbench.editor.closeOnFileDelete": false, | |
"workbench.editor.enablePreview": false, | |
"git.autofetch": true, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"python.venvPath": "~/.virtualenvs", | |
"vsicons.projectDetection.disableDetect": true, | |
"python.linting.pylintArgs": [ | |
"--load-plugins=pylint_django" | |
], | |
"python.jediEnabled": false, | |
"editor.suggestSelection": "first", | |
"window.zoomLevel": 0, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.fontSize": 13, | |
"gitlens.views.fileHistory.location": "gitlens", | |
"gitlens.views.lineHistory.location": "gitlens", | |
"gitlens.views.compare.location": "gitlens", | |
"gitlens.views.search.location": "gitlens", | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"explorer.autoReveal": false, | |
"window.closeWhenEmpty": true, | |
"explorer.compactFolders": false, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment