Created
December 11, 2019 18:35
-
-
Save rsurjano/e3c1a6a6c06bb15387724f159ec7b30a to your computer and use it in GitHub Desktop.
vscode-editor
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
| { | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": false | |
| }, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": false | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": false | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": false | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": false | |
| }, | |
| "css.validate": false, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "editor.acceptSuggestionOnEnter": "smart", | |
| "editor.renderWhitespace": "all", | |
| "editor.autoIndent": false, | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorStyle": "line", | |
| "editor.detectIndentation": false, | |
| "editor.fontFamily": "Fira Code Retina", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 12, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.minimap.enabled": false, | |
| "editor.rulers": [ | |
| 100 | |
| ], | |
| "editor.scrollBeyondLastLine": false, | |
| "git.inputValidationLength": 0, | |
| "editor.showFoldingControls": "always", | |
| "editor.snippetSuggestions": "top", | |
| "editor.stablePeek": true, | |
| "editor.suggestSelection": "first", | |
| "editor.tabSize": 4, | |
| "emmet.triggerExpansionOnTab": true, | |
| "eslint.alwaysShowStatus": true, | |
| "eslint.autoFixOnSave": true, | |
| "stylelint.autoFixOnSave": true, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| { | |
| "autoFix": true, | |
| "language": "html" | |
| }, | |
| { | |
| "autoFix": true, | |
| "language": "typescript" | |
| }, | |
| { | |
| "autoFix": true, | |
| "language": "typescriptreact" | |
| } | |
| ], | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.openEditors.visible": 0, | |
| "explorer.sortOrder": "type", | |
| "extensions.showRecommendationsOnlyOnDemand": true, | |
| "files.associations": { | |
| "*.page": "js", | |
| ".bash_*": "shellscript", | |
| ".shell_*": "shellscript" | |
| }, | |
| "files.autoSave": "onFocusChange", | |
| "files.defaultLanguage": "markdown", | |
| "files.exclude": { | |
| "**/.awcache": true, | |
| "**/.git": true, | |
| "**/.DS_Store": true, | |
| "**/.vscode": true, | |
| "**/__pycache__": true, | |
| "**/.pytest_cache": true, | |
| "**/node_modules": true, | |
| "venv": true, | |
| "*.sublime-*": true, | |
| "env*": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/**": true, | |
| "**/env/**": true, | |
| "**/venv/**": true, | |
| "env-*": true | |
| }, | |
| "files.insertFinalNewline": true, | |
| "git.autofetch": true, | |
| "git.ignoreLimitWarning": true, | |
| "gitlens.advanced.messages": { | |
| "suppressShowKeyBindingsNotice": true | |
| }, | |
| "grunt.autoDetect": "off", | |
| "gulp.autoDetect": "off", | |
| "jake.autoDetect": "off", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "javascript.validate.enable": false, | |
| "less.validate": false, | |
| "npm.autoDetect": "off", | |
| "scss.validate": false, | |
| "search.exclude": { | |
| "**/bower_components": true, | |
| "**/node_modules": true, | |
| ".conky/**": true, | |
| ".emacs.d/**": true, | |
| ".vscode/**": true, | |
| "gnome-shell/**": true, | |
| "mutt/**": true, | |
| "vagrant/**": true | |
| }, | |
| "telemetry.enableCrashReporter": false, | |
| "telemetry.enableTelemetry": false, | |
| "terminal.external.linuxExec": "urxvtc", | |
| "terminal.integrated.shell.linux": "/usr/bin/zsh", | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "terminal.integrated.shellArgs.osx": [], | |
| "typescript.check.npmIsInstalled": false, | |
| "typescript.tsc.autoDetect": "off", | |
| "typescript.tsdk": "./node_modules/typescript/lib", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.validate.enable": true, | |
| "window.menuBarVisibility": "toggle", | |
| "window.restoreFullscreen": true, | |
| "window.restoreWindows": "all", | |
| "window.title": "${dirty}${activeEditorLong}", | |
| "window.zoomLevel": 0, | |
| "workbench.activityBar.visible": true, | |
| "workbench.colorCustomizations": { | |
| "editorIndentGuide.activeBackground": "#7bd88f" | |
| }, | |
| "workbench.colorTheme": "Monokai Pro (Filter Spectrum)", | |
| "workbench.editor.enablePreview": false, | |
| "workbench.editor.enablePreviewFromQuickOpen": false, | |
| "workbench.editor.openPositioning": "right", | |
| "workbench.editor.tabCloseButton": "left", | |
| "workbench.iconTheme": "Monokai Pro (Filter Spectrum) Icons", | |
| "workbench.sideBar.location": "left", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.statusBar.visible": true, | |
| "yaml.schemas": { | |
| "file:///home/giru/.vscode-server/extensions/atlassian.atlascode-2.2.0/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
| }, | |
| "atlascode.jira.jqlList": [ | |
| { | |
| "id": "dd290544-a974-42e1-8dda-3f50d5cfdac7", | |
| "enabled": true, | |
| "name": "My interbank Issues", | |
| "query": "assignee = currentUser() ORDER BY lastViewed DESC ", | |
| "siteId": "81f69eb0-3cea-4ede-890c-2c52b37e9048", | |
| "monitor": true | |
| } | |
| ], | |
| "atlascode.bitbucket.pipelines.refreshInterval": 1, | |
| "atlascode.bitbucket.issues.refreshInterval": 1, | |
| "atlascode.bitbucket.explorer.refreshInterval": 1, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[dockerfile]": { | |
| "editor.defaultFormatter": "ms-azuretools.vscode-docker" | |
| }, | |
| "atlascode.jira.explorer.refreshInterval": 1, | |
| "atlascode.configurationTarget": "user", | |
| "atlascode.jira.enabled": true, | |
| "atlascode.bitbucket.enabled": true, | |
| "atlascode.bitbucket.issues.createJiraEnabled": true, | |
| "atlascode.showWelcomeOnInstall": false, | |
| "atlascode.bitbucket.pipelines.branchFilters": [], | |
| "atlascode.bitbucket.explorer.enabled": true, | |
| "atlascode.bitbucket.explorer.relatedJiraIssues.enabled": true, | |
| "atlascode.bitbucket.explorer.relatedBitbucketIssues.enabled": true, | |
| "atlascode.bitbucket.explorer.notifications.pullRequestCreated": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment