Created
October 7, 2020 15:43
-
-
Save dhargitai/f4b258bbb85533922fd5b11f3dc72afa to your computer and use it in GitHub Desktop.
My VSCode settings
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.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"editor.fontSize": 14, | |
"files.autoSave": "onWindowChange", | |
"editor.rulers": [ | |
100 | |
], | |
"editor.scrollBeyondLastLine": false, | |
"[yaml]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2 | |
}, | |
"editor.tabSize": 2, | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"files.trimFinalNewlines": true, | |
"editor.minimap.enabled": false, | |
"explorer.confirmDelete": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"explorer.confirmDragAndDrop": false, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": false, | |
"window.zoomLevel": 1, | |
"breadcrumbs.enabled": true, | |
"files.associations": { | |
"*.js": "javascriptreact" | |
}, | |
"terminal.integrated.rendererType": "dom", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"workbench.iconTheme": "vscode-great-icons", | |
"workbench.colorTheme": "Atom One Dark", | |
"workbench.colorCustomizations": { | |
"editor.background": "#161616" | |
}, | |
"go.formatTool": "goimports", | |
"search.exclude": { | |
"**/.cache": true, | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/coverage": true, | |
"**/dist": true, | |
"**/build": true, | |
"**/.build": true, | |
"**/.gh-pages": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.detectIndentation": true, | |
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": false, | |
"editor.wordBasedSuggestions": false, | |
"editor.suggest.localityBonus": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.suggestSelection": "recentlyUsed", | |
"editor.suggest.showKeywords": false | |
}, | |
"editor.renderWhitespace": "boundary", | |
"files.exclude": { | |
"USE_GITIGNORE": true | |
}, | |
"files.defaultLanguage": "{activeEditorLanguage}", | |
"javascript.validate.enable": false, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"eslint.options": { | |
"env": { | |
"browser": true, | |
"jest/globals": true, | |
"es6": true | |
}, | |
"parserOptions": { | |
"ecmaVersion": 2019, | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"rules": { | |
"no-debugger": "off" | |
} | |
}, | |
"grunt.autoDetect": "off", | |
"gulp.autoDetect": "off", | |
"npm.runSilent": true, | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.smoothScrolling": true, | |
"php.suggest.basic": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment