Last active
January 5, 2022 04:35
-
-
Save GitLinuxDev/7bb2a91823c83fe74e01e8fb2b29576a to your computer and use it in GitHub Desktop.
Backup VSCode Full 04/01/2022
This file contains 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
{"lastUpload":"2022-01-05T04:35:24.286Z","extensionVersion":"v3.4.3"} |
This file contains 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
[ | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "0cfb9d1d-3e59-4c36-a597-157b54e4442b", | |
"publisherId": "vsls-contrib.gistfs", | |
"publisherDisplayName": "vsls-contrib" | |
}, | |
"name": "gistfs", | |
"publisher": "vsls-contrib", | |
"version": "0.3.0" | |
}, | |
{ | |
"metadata": { | |
"id": "c807e072-5951-4a01-9542-450f946c7ec1", | |
"publisherId": "xabikos.ReactSnippets", | |
"publisherDisplayName": "xabikos" | |
}, | |
"name": "ReactSnippets", | |
"publisher": "xabikos", | |
"version": "2.4.0" | |
}, | |
{ | |
"metadata": { | |
"id": "607fd052-be03-4363-b657-2bd62b83d28a", | |
"publisherId": "ms-vscode-remote.remote-ssh", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-ssh", | |
"publisher": "ms-vscode-remote", | |
"version": "0.70.0" | |
}, | |
{ | |
"metadata": { | |
"id": "f0c5397b-d357-4197-99f0-cb4202f22818", | |
"publisherId": "ms-vscode-remote.remote-wsl", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-wsl", | |
"publisher": "ms-vscode-remote", | |
"version": "0.63.13" | |
}, | |
{ | |
"metadata": { | |
"id": "3fd25437-acd9-42d7-ab19-581a69ce2dd9", | |
"publisherId": "MS-CEINTL.vscode-language-pack-pt-BR", | |
"publisherDisplayName": "MS-CEINTL" | |
}, | |
"name": "vscode-language-pack-pt-BR", | |
"publisher": "MS-CEINTL", | |
"version": "1.63.3" | |
}, | |
{ | |
"metadata": { | |
"id": "5a7017bf-c571-4d77-b902-6e56b16f539a", | |
"publisherId": "johnpapa.vscode-peacock", | |
"publisherDisplayName": "johnpapa" | |
}, | |
"name": "vscode-peacock", | |
"publisher": "johnpapa", | |
"version": "4.0.0" | |
} | |
] |
This file contains 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
{ | |
"$id": "https://github.com/microsoft/terminal/blob/main/doc/cascadia/profiles.schema.json", | |
"$schema": "https://json-schema.org/draft/2020-12/schema#", | |
"title": "Microsoft's Windows Terminal Settings Profile Schema", | |
"definitions": { | |
"KeyChordSegment": { | |
"pattern": "^(?:(?:ctrl|alt|shift|win)\\+)*(?:app|backspace|browser_(?:back|forward|refresh|stop|search|favorites|home)|comma|delete|down|end|enter|esc|escape|home|insert|left|menu|minus|pagedown|pageup|period|pgdn|pgup|plus|right|space|tab|up|f(?:1\\d?|2[0-4]?|[3-9])|numpad\\d|numpad_(?:\\d|add|decimal|divide|minus|multiply|period|plus|subtract)|(?:vk|sc)\\((?:[1-9]|1?\\d{2}|2[0-4]\\d|25[0-5])\\)|[^\\s+])(?:\\+(?:ctrl|alt|shift|win))*$", | |
"type": "string", | |
"description": "The string should fit the format \"[ctrl+][alt+][shift+][win+]<KeyName>\", where each modifier is optional. KeyName is either any single key character, an explicit virtual key or scan code in the form vk(nnn) and sc(nnn) respectively, or one of the special names listed at https://docs.microsoft.com/en-us/windows/terminal/customize-settings/actions#accepted-modifiers-and-keys" | |
}, | |
"Color": { | |
"default": "#", | |
"pattern": "^#[A-Fa-f0-9]{3}(?:[A-Fa-f0-9]{3})?$", | |
"type": "string", | |
"format": "color" | |
}, | |
"Coordinates": { | |
"pattern": "^(-?\\d+)?(,\\s?(-?\\d+)?)?$", | |
"type": "string" | |
}, | |
"DynamicProfileSource": { | |
"enum": [ | |
"Windows.Terminal.Wsl", | |
"Windows.Terminal.Azure", | |
"Windows.Terminal.PowershellCore" | |
], | |
"type": "string" | |
}, | |
"BellStyle": { | |
"oneOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"type": "array", | |
"items": { | |
"type": "string", | |
"enum": [ | |
"audible", | |
"window", | |
"taskbar" | |
] | |
} | |
}, | |
{ | |
"type": "string", | |
"enum": [ | |
"audible", | |
"taskbar", | |
"window", | |
"all", | |
"none" | |
] | |
} | |
] | |
}, | |
"AppearanceConfig": { | |
"properties": { | |
"colorScheme": { | |
"description": "The name of a color scheme to use when unfocused.", | |
"type": "string" | |
}, | |
"foreground": { | |
"$ref": "#/definitions/Color", | |
"default": "#cccccc", | |
"description": "Sets the text color when unfocused. Overrides \"foreground\" from the color scheme. Uses hex color format: \"#rrggbb\".", | |
"type": ["string", "null"] | |
}, | |
"background": { | |
"$ref": "#/definitions/Color", | |
"default": "#0c0c0c", | |
"description": "Sets the background color of the text when unfocused. Overrides \"background\" from the color scheme. Uses hex color format: \"#rrggbb\".", | |
"type": ["string", "null"] | |
}, | |
"selectionBackground": { | |
"oneOf": [ | |
{"$ref": "#/definitions/Color"}, | |
{ "type": "null" } | |
], | |
"description": "Sets the background color of selected text when unfocused. Overrides selectionBackground set in the color scheme. Uses hex color format: \"#rrggbb\"." | |
}, | |
"cursorColor": { | |
"oneOf": [ | |
{ "$ref": "#/definitions/Color" }, | |
{"type": "null"} | |
], | |
"description": "Sets the color of the cursor when unfocused. Overrides the cursor color from the color scheme. Uses hex color format: \"#rrggbb\"." | |
}, | |
"cursorShape": { | |
"default": "bar", | |
"description": "Sets the shape of the cursor when unfocused. Possible values:\n -\"bar\" ( ┃, default )\n -\"doubleUnderscore\" ( ‗ )\n -\"emptyBox\" ( ▯ )\n -\"filledBox\" ( █ )\n -\"underscore\" ( ▁ )\n -\"vintage\" ( ▃ )", | |
"enum": [ | |
"bar", | |
"doubleUnderscore", | |
"emptyBox", | |
"filledBox", | |
"underscore", | |
"vintage" | |
], | |
"type": "string" | |
}, | |
"cursorHeight": { | |
"description": "Sets the percentage height of the cursor (when unfocused) starting from the bottom. Only works when cursorShape is set to \"vintage\". Accepts values from 1-100.", | |
"maximum": 100, | |
"minimum": 1, | |
"type": ["integer","null"], | |
"default": 25 | |
}, | |
"backgroundImage": { | |
"description": "Sets the file location of the image to draw over the window background when unfocused.", | |
"oneOf": [ | |
{ | |
"type": ["string", null] | |
}, | |
{ | |
"enum": [ | |
"desktopWallpaper" | |
] | |
} | |
], | |
"type": [ "string", "null" ] | |
}, | |
"backgroundImageOpacity": { | |
"default": 1.0, | |
"description": "Sets the transparency of the background image when unfocused. Accepts floating point values from 0-1.", | |
"maximum": 1.0, | |
"minimum": 0.0, | |
"type": "number" | |
}, | |
"backgroundImageStretchMode": { | |
"default": "uniformToFill", | |
"description": "Sets how the background image is resized to fill the window when unfocused.", | |
"enum": [ | |
"fill", | |
"none", | |
"uniform", | |
"uniformToFill" | |
], | |
"type": "string" | |
}, | |
"backgroundImageAlignment": { | |
"default": "center", | |
"enum": [ | |
"bottom", | |
"bottomLeft", | |
"bottomRight", | |
"center", | |
"left", | |
"right", | |
"top", | |
"topLeft", | |
"topRight" | |
], | |
"description": "Sets how the background image aligns to the boundaries of the window when unfocused. Possible values: \"center\", \"left\", \"top\", \"right\", \"bottom\", \"topLeft\", \"topRight\", \"bottomLeft\", \"bottomRight\"", | |
"type": "string" | |
}, | |
"intenseTextStyle": { | |
"default": "bright", | |
"description": "Controls how 'intense' text is rendered. Values are \"bold\", \"bright\", \"all\" and \"none\"", | |
"enum": [ | |
"none", | |
"bold", | |
"bright", | |
"all" | |
], | |
"type": "string" | |
}, | |
"experimental.retroTerminalEffect": { | |
"description": "When set to true, enable retro terminal effects when unfocused. This is an experimental feature, and its continued existence is not guaranteed.", | |
"type": "boolean" | |
}, | |
"experimental.pixelShaderPath": { | |
"description": "Use to set a path to a pixel shader to use with the Terminal when unfocused. Overrides `experimental.retroTerminalEffect`. This is an experimental feature, and its continued existence is not guaranteed.", | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"FontConfig": { | |
"properties": { | |
"face": { | |
"default": "Cascadia Mono", | |
"description": "Name of the font face used in the profile.", | |
"type": "string" | |
}, | |
"size": { | |
"default": 12, | |
"description": "Size of the font in points.", | |
"minimum": 1, | |
"type": "integer" | |
}, | |
"weight": { | |
"default": "normal", | |
"description": "Sets the weight (lightness or heaviness of the strokes) for the given font. Possible values:\n -\"thin\"\n -\"extra-light\"\n -\"light\"\n -\"semi-light\"\n -\"normal\" (default)\n -\"medium\"\n -\"semi-bold\"\n -\"bold\"\n -\"extra-bold\"\n -\"black\"\n -\"extra-black\"\n or the corresponding numeric representation of OpenType font weight.", | |
"oneOf": [ | |
{ | |
"enum": [ | |
"thin", | |
"extra-light", | |
"light", | |
"semi-light", | |
"normal", | |
"medium", | |
"semi-bold", | |
"bold", | |
"extra-bold", | |
"black", | |
"extra-black" | |
], | |
"type": "string" | |
}, | |
{ | |
"maximum": 990, | |
"minimum": 100, | |
"type": "integer" | |
} | |
] | |
}, | |
"features": { | |
"description": "Sets the DWrite font features for the given font. For example, { \"ss01\": 1, \"liga\":0 } will enable ss01 and disable ligatures.", | |
"type": "object", | |
"patternProperties": { | |
"^(([A-Za-z0-9]){4})$": { "type": "integer" } | |
}, | |
"additionalProperties": false | |
}, | |
"axes": { | |
"description": "Sets the DWrite font axes for the given font. For example, { \"wght\": 200 } will set the font weight to 200.", | |
"type": "object", | |
"patternProperties": { | |
"^([A-Za-z]{4})$": { "type": "number" } | |
}, | |
"additionalProperties": false | |
} | |
}, | |
"type": "object" | |
}, | |
"ProfileGuid": { | |
"default": "{}", | |
"pattern": "^\\{[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}\\}$", | |
"type": "string" | |
}, | |
"Icon": { | |
"description": "Image file location or an emoji to be used as an icon. Displays within the tab, the dropdown menu, and jumplist.", | |
"type": [ | |
"string", | |
"null" | |
] | |
}, | |
"ShortcutActionName": { | |
"enum": [ | |
"adjustFontSize", | |
"closeOtherTabs", | |
"closePane", | |
"closeTab", | |
"closeTabsAfter", | |
"closeWindow", | |
"commandPalette", | |
"copy", | |
"duplicateTab", | |
"find", | |
"findMatch", | |
"focusPane", | |
"globalSummon", | |
"identifyWindow", | |
"identifyWindows", | |
"moveFocus", | |
"movePane", | |
"swapPane", | |
"moveTab", | |
"newTab", | |
"newWindow", | |
"nextTab", | |
"openNewTabDropdown", | |
"openSettings", | |
"openTabColorPicker", | |
"openWindowRenamer", | |
"paste", | |
"prevTab", | |
"renameTab", | |
"openTabRenamer", | |
"quakeMode", | |
"resetFontSize", | |
"resizePane", | |
"renameWindow", | |
"scrollDown", | |
"scrollDownPage", | |
"scrollUp", | |
"scrollUpPage", | |
"scrollToBottom", | |
"scrollToTop", | |
"sendInput", | |
"setColorScheme", | |
"setTabColor", | |
"splitPane", | |
"switchToTab", | |
"tabSearch", | |
"toggleAlwaysOnTop", | |
"toggleFocusMode", | |
"toggleFullscreen", | |
"togglePaneZoom", | |
"toggleSplitOrientation", | |
"toggleReadOnlyMode", | |
"toggleShaderEffects", | |
"wt", | |
"unbound" | |
], | |
"type": "string" | |
}, | |
"FocusDirection": { | |
"enum": [ | |
"left", | |
"right", | |
"up", | |
"down", | |
"previous", | |
"nextInOrder", | |
"previousInOrder", | |
"first" | |
], | |
"type": "string" | |
}, | |
"ResizeDirection": { | |
"enum": [ | |
"left", | |
"right", | |
"up", | |
"down" | |
], | |
"type": "string" | |
}, | |
"MoveTabDirection": { | |
"enum": [ | |
"forward", | |
"backward" | |
], | |
"type": "string" | |
}, | |
"FindMatchDirection": { | |
"enum": [ | |
"next", | |
"prev" | |
], | |
"type": "string" | |
}, | |
"SplitState": { | |
"enum": [ | |
"vertical", | |
"horizontal", | |
"auto" | |
], | |
"type": "string" | |
}, | |
"CopyFormat": { | |
"oneOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"type": "array", | |
"items": { | |
"type": "string", | |
"enum": [ | |
"html", | |
"rtf" | |
] | |
} | |
}, | |
{ | |
"type": "string", | |
"enum": [ | |
"html", | |
"rtf", | |
"all", | |
"none" | |
] | |
} | |
] | |
}, | |
"AnchorKey": { | |
"enum": [ | |
"ctrl", | |
"alt", | |
"shift" | |
], | |
"type": "string" | |
}, | |
"CommandPaletteLaunchMode": { | |
"enum": [ | |
"action", | |
"commandLine" | |
], | |
"type": "string" | |
}, | |
"NewTerminalArgs": { | |
"properties": { | |
"commandline": { | |
"description": "A commandline to use instead of the profile's", | |
"type": "string" | |
}, | |
"tabTitle": { | |
"description": "An initial tabTitle to use instead of the profile's", | |
"type": "string" | |
}, | |
"startingDirectory": { | |
"description": "A startingDirectory to use instead of the profile's", | |
"type": "string" | |
}, | |
"profile": { | |
"description": "Either the GUID or name of a profile to use, instead of launching the default", | |
"type": "string" | |
}, | |
"index": { | |
"type": "integer", | |
"description": "The index of the profile in the new tab dropdown (starting at 0)" | |
}, | |
"tabColor": { | |
"$ref": "#/definitions/Color", | |
"default": null, | |
"description": "If provided, will set the tab's color to the given value" | |
}, | |
"suppressApplicationTitle": { | |
"type": "boolean", | |
"default": "false", | |
"description": "When set to true, tabTitle overrides the default title of the tab and any title change messages from the application will be suppressed. When set to false, tabTitle behaves as normal" | |
}, | |
"colorScheme": { | |
"description": "The name of a color scheme to use, instead of the one specified by the profile", | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"SwitchToAdjacentTabArgs" : { | |
"oneOf": [ | |
{ "type": "null" }, | |
{ | |
"enum": [ | |
"mru", | |
"inOrder", | |
"disabled" | |
], | |
"type": "string" | |
} | |
] | |
}, | |
"ShortcutAction": { | |
"properties": { | |
"action": { | |
"description": "The action to execute", | |
"$ref": "#/definitions/ShortcutActionName" | |
} | |
}, | |
"required": [ | |
"action" | |
], | |
"type": "object" | |
}, | |
"AdjustFontSizeAction": { | |
"description": "Arguments corresponding to an Adjust Font Size Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "adjustFontSize" }, | |
"delta": { | |
"type": "integer", | |
"default": 0, | |
"description": "How much to change the current font point size" | |
} | |
} | |
} | |
], | |
"required": [ "delta" ] | |
}, | |
"CopyAction": { | |
"description": "Arguments corresponding to a Copy Text Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "copy" }, | |
"singleLine": { | |
"type": "boolean", | |
"default": false, | |
"description": "If true, the copied content will be copied as a single line (even if there are hard line breaks present in the text). If false, newlines persist from the selected text." | |
}, | |
"copyFormatting": { | |
"default": null, | |
"description": "When set to `true`, the color and font formatting of selected text is also copied to your clipboard. When set to `false`, only plain text is copied to your clipboard. An array of specific formats can also be used. Supported array values include `html` and `rtf`. Plain text is always copied. Not setting this value inherits the behavior of the `copyFormatting` global setting.", | |
"oneOf": [ | |
{ | |
"$ref": "#/definitions/CopyFormat" | |
}, | |
{ | |
"type": "null" | |
} | |
] | |
} | |
} | |
} | |
] | |
}, | |
"NewTabAction": { | |
"description": "Arguments corresponding to a New Tab Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ "$ref": "#/definitions/NewTerminalArgs" }, | |
{ | |
"properties": { | |
"action": { "type":"string", "pattern": "newTab" } | |
} | |
} | |
] | |
}, | |
"SwitchToTabAction": { | |
"description": "Arguments corresponding to a Switch To Tab Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "switchToTab" }, | |
"index": { | |
"type": "integer", | |
"default": 0, | |
"description": "Which tab to switch to, with the first being 0" | |
} | |
} | |
} | |
], | |
"required": [ "index" ] | |
}, | |
"MovePaneAction": { | |
"description": "Arguments corresponding to a Move Pane Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "movePane" }, | |
"index": { | |
"type": "integer", | |
"default": 0, | |
"description": "Which tab to move the pane to, with the first being 0" | |
} | |
} | |
} | |
], | |
"required": [ "index" ] | |
}, | |
"MoveFocusAction": { | |
"description": "Arguments corresponding to a Move Focus Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "moveFocus" }, | |
"direction": { | |
"$ref": "#/definitions/FocusDirection", | |
"default": "left", | |
"description": "The direction to move focus in, between panes. Direction can be 'previous' to move to the most recently used pane, or 'nextInOrder' or 'previousInOrder' to move to the next or previous pane." | |
} | |
} | |
} | |
], | |
"required": [ "direction" ] | |
}, | |
"SwapPaneAction": { | |
"description": "Arguments corresponding to a Swap Pane Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "swapPane" }, | |
"direction": { | |
"$ref": "#/definitions/FocusDirection", | |
"default": "left", | |
"description": "The direction to move the focus pane in, swapping panes. Direction can be 'previous' to swap with the most recently used pane, or 'nextInOrder' or 'previousInOrder' to move to the next or previous pane." | |
} | |
} | |
} | |
], | |
"required": [ "direction" ] | |
}, | |
"ResizePaneAction": { | |
"description": "Arguments corresponding to a Resize Pane Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "resizePane" }, | |
"direction": { | |
"$ref": "#/definitions/ResizeDirection", | |
"default": "left", | |
"description": "The direction to move the pane separator in." | |
} | |
} | |
} | |
], | |
"required": [ "direction" ] | |
}, | |
"SendInputAction": { | |
"description": "Arguments corresponding to a Send Input Action", | |
"allOf": [ | |
{ | |
"$ref": "#/definitions/ShortcutAction" | |
}, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "sendInput" }, | |
"input": { | |
"type": "string", | |
"default": "", | |
"description": "The text input to feed into the shell. ANSI escape sequences may be used. Escape codes like \\x1b must be written as \\u001b." | |
} | |
} | |
} | |
], | |
"required": [ "input" ] | |
}, | |
"SplitPaneAction": { | |
"description": "Arguments corresponding to a Split Pane Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ "$ref": "#/definitions/NewTerminalArgs" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "splitPane" }, | |
"split": { | |
"$ref": "#/definitions/SplitState", | |
"default": "auto", | |
"description": "The orientation to split the pane in. Possible values:\n -\"auto\" (splits pane based on remaining space)\n -\"horizontal\" (think [-])\n -\"vertical\" (think [|])" | |
}, | |
"splitMode": { | |
"default": "duplicate", | |
"description": "Control how the pane splits. Only accepts \"duplicate\" which will duplicate the focused pane's profile into a new pane." | |
}, | |
"size": { | |
"default": 0.5, | |
"description": "Specify how large the new pane should be, as a fraction of the current pane's size. 1.0 would be 'all of the current pane', and 0.0 is 'None of the parent'. Accepts floating point values from 0-1 (default 0.5).", | |
"maximum": 1, | |
"minimum": 0, | |
"type": "number" | |
} | |
} | |
} | |
] | |
}, | |
"OpenSettingsAction": { | |
"description": "Arguments corresponding to a Open Settings Action", | |
"allOf": [ | |
{ | |
"$ref": "#/definitions/ShortcutAction" | |
}, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "openSettings" }, | |
"target": { | |
"type": "string", | |
"default": "settingsUI", | |
"description": "Opens Settings UI or settings file.", | |
"enum": [ | |
"settingsFile", | |
"defaultsFile", | |
"allFiles", | |
"settingsUI" | |
] | |
} | |
} | |
} | |
] | |
}, | |
"SetTabColorAction": { | |
"description": "Arguments corresponding to a Set Tab Color Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "setTabColor" }, | |
"color": { | |
"$ref": "#/definitions/Color", | |
"default": null, | |
"description": "If provided, will set the tab's color to the given value. If omitted, will reset the tab's color." | |
} | |
} | |
} | |
] | |
}, | |
"SetColorSchemeAction": { | |
"description": "Arguments corresponding to a Set Color Scheme Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "setColorScheme" }, | |
"colorScheme": { | |
"type": "string", | |
"default": "", | |
"description": "the name of the scheme to apply to the active pane" | |
} | |
} | |
} | |
], | |
"required": [ "colorScheme" ] | |
}, | |
"WtAction": { | |
"description": "Arguments corresponding to a wt Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "wt" }, | |
"commandline": { | |
"type": "string", | |
"default": "", | |
"description": "a `wt` commandline to run in the current window" | |
} | |
} | |
} | |
], | |
"required": [ "commandline" ] | |
}, | |
"CloseOtherTabsAction": { | |
"description": "Arguments for a closeOtherTabs action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "closeOtherTabs" }, | |
"index": { | |
"oneOf": [ | |
{ "type": "integer" }, | |
{ "type": "null" } | |
], | |
"default": null, | |
"description": "Close the tabs other than the one at this index. If no index is provided, use the focused tab's index." | |
} | |
} | |
} | |
] | |
}, | |
"CloseTabsAfterAction": { | |
"description": "Arguments for a closeTabsAfter action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "closeTabsAfter" }, | |
"index": { | |
"oneOf": [ | |
{ "type": "integer" }, | |
{ "type": "null" } | |
], | |
"default": null, | |
"description": "Close the tabs following the tab at this index. If no index is provided, use the focused tab's index." | |
} | |
} | |
} | |
] | |
}, | |
"CloseTabAction": { | |
"description": "Arguments for a closeTab action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "closeTab" }, | |
"index": { | |
"oneOf": [ | |
{ "type": "integer" }, | |
{ "type": "null" } | |
], | |
"default": null, | |
"description": "Close the tab at this index. If no index is provided, use the focused tab's index." | |
} | |
} | |
} | |
] | |
}, | |
"ScrollUpAction": { | |
"description": "Arguments for a scrollUp action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "scrollUp" }, | |
"rowsToScroll": { | |
"type": ["integer", "null"], | |
"default": null, | |
"description": "Scroll up rowsToScroll lines. If no value is provided, use the system-level defaults." | |
} | |
} | |
} | |
] | |
}, | |
"ScrollDownAction": { | |
"description": "Arguments for a scrollDown action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "scrollDown" }, | |
"rowsToScroll": { | |
"type": ["integer", "null"], | |
"default": null, | |
"description": "Scroll down rowsToScroll lines. If no value is provided, use the system-level defaults." | |
} | |
} | |
} | |
] | |
}, | |
"MoveTabAction": { | |
"description": "Arguments for moving a tab", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "moveTab" }, | |
"direction": { | |
"$ref": "#/definitions/MoveTabDirection", | |
"description": "The direction to move the tab" | |
} | |
} | |
} | |
], | |
"required": [ "direction" ] | |
}, | |
"CommandPaletteAction": { | |
"description": "Arguments for a commandPalette action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "commandPalette" }, | |
"launchMode": { | |
"$ref": "#/definitions/CommandPaletteLaunchMode", | |
"default": "action", | |
"description": "Toggle command palette in either action or command line mode. If no value is provided, the palette will launch in action mode." | |
} | |
} | |
} | |
] | |
}, | |
"FindMatchAction": { | |
"description": "Arguments corresponding to a Find Match Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "findMatch" }, | |
"direction": { | |
"$ref": "#/definitions/FindMatchDirection", | |
"default": "prev", | |
"description": "The direction to search in. \"prev\" will search upwards in the buffer, and \"next\" will search downwards." | |
} | |
} | |
} | |
], | |
"required": [ "direction" ] | |
}, | |
"NewWindowAction": { | |
"description": "Arguments corresponding to a New Window Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ "$ref": "#/definitions/NewTerminalArgs" }, | |
{ | |
"properties": { | |
"action": { "type":"string", "pattern": "newWindow" } | |
} | |
} | |
] | |
}, | |
"PrevTabAction": { | |
"description": "Arguments corresponding to a Previous Tab Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type":"string", "pattern": "prevTab" }, | |
"tabSwitcherMode": { | |
"$ref": "#/definitions/SwitchToAdjacentTabArgs", | |
"default": null, | |
"description": "Move to the previous tab using \"tabSwitcherMode\". If no mode is provided, use the one globally defined one." | |
} | |
} | |
} | |
] | |
}, | |
"NextTabAction": { | |
"description": "Arguments corresponding to a Next Tab Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type":"string", "pattern": "nextTab" }, | |
"tabSwitcherMode": { | |
"$ref": "#/definitions/SwitchToAdjacentTabArgs", | |
"default": null, | |
"description": "Move to the next tab using \"tabSwitcherMode\". If no mode is provided, use the one globally defined one." | |
} | |
} | |
} | |
] | |
}, | |
"RenameTabAction": { | |
"description": "Arguments corresponding to a renameTab Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "renameTab" }, | |
"title": { | |
"type": "string", | |
"default": "", | |
"description": "A title to assign to the tab. If omitted or null, this action will restore the tab's title to the original value." | |
} | |
} | |
} | |
] | |
}, | |
"RenameWindowAction": { | |
"description": "Arguments corresponding to a renameWindow Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "renameWindow" }, | |
"name": { | |
"type": "string", | |
"default": "", | |
"description": "A name to assign to the window." | |
} | |
} | |
} | |
] | |
}, | |
"FocusPaneAction": { | |
"description": "Arguments corresponding to a focusPane Action", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "focusPane" }, | |
"id": { | |
"type": "string", | |
"default": "", | |
"description": "The ID of the pane to focus" | |
} | |
} | |
} | |
] | |
}, | |
"GlobalSummonAction": { | |
"description": "This is a special action that works globally in the OS, rather than only in the context of the terminal window. When pressed, this action will summon the terminal window.", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "globalSummon" }, | |
"desktop": { | |
"type": "string", | |
"default": "toCurrent", | |
"description": "This controls how the terminal should interact with virtual desktops.\n- \"any\": Leave the window on whichever desktop it's already on - will switch to that desktop as the window is activated.\n- \"toCurrent\" (default): Move the window to the current virtual desktop.\n- \"onCurrent\": Only summon the window if it's already on the current virtual desktop. ", | |
"enum": [ | |
"any", | |
"toCurrent", | |
"onCurrent" | |
] | |
}, | |
"monitor": { | |
"type": "string", | |
"default": "toMouse", | |
"description": "This controls the monitor that the window will be summoned from/to.\n- \"any\": Summon the most recently used window, regardless of which monitor it's currently on.\n- \"toCurrent\": Summon the most recently used window to the monitor with the current foreground window.\n- \"toMouse\" (default): Summon the most recently used window to the monitor where the mouse cursor is.", | |
"enum": [ | |
"any", | |
"toCurrent", | |
"toMouse" | |
] | |
}, | |
"name": { | |
"type": "string", | |
"description": "When provided, summon the window whose name or ID matches the given name value. If no such window exists, then create a new window with that name." | |
}, | |
"dropdownDuration": { | |
"type": "number", | |
"minimum": 0, | |
"default": 0, | |
"description": "When provided with a positive number, \"slide\" the window in from the top of the screen using an animation that lasts dropdownDuration milliseconds." | |
}, | |
"toggleVisibility": { | |
"type": "boolean", | |
"default": true, | |
"description": "When true, pressing the assigned keys for this action will dismiss (minimize) the window when the window is currently the foreground window." | |
} | |
} | |
} | |
] | |
}, | |
"QuakeModeAction": { | |
"description": "This action is a special variation of the globalSummon action. It specifically summons a window called \"_quake\". If you would like to change the behavior of the quakeMode action, we recommended creating a new globalSummon entry.", | |
"allOf": [ | |
{ "$ref": "#/definitions/ShortcutAction" }, | |
{ | |
"properties": { | |
"action": { "type": "string", "pattern": "quakeMode" } | |
} | |
} | |
] | |
}, | |
"Keybinding": { | |
"additionalProperties": false, | |
"properties": { | |
"command": { | |
"description": "The action executed when the associated key bindings are pressed.", | |
"oneOf": [ | |
{ "$ref": "#/definitions/AdjustFontSizeAction" }, | |
{ "$ref": "#/definitions/CopyAction" }, | |
{ "$ref": "#/definitions/ShortcutActionName" }, | |
{ "$ref": "#/definitions/NewTabAction" }, | |
{ "$ref": "#/definitions/SwitchToTabAction" }, | |
{ "$ref": "#/definitions/MoveFocusAction" }, | |
{ "$ref": "#/definitions/MovePaneAction" }, | |
{ "$ref": "#/definitions/SwapPaneAction" }, | |
{ "$ref": "#/definitions/ResizePaneAction" }, | |
{ "$ref": "#/definitions/SendInputAction" }, | |
{ "$ref": "#/definitions/SplitPaneAction" }, | |
{ "$ref": "#/definitions/OpenSettingsAction" }, | |
{ "$ref": "#/definitions/SetTabColorAction" }, | |
{ "$ref": "#/definitions/SetColorSchemeAction" }, | |
{ "$ref": "#/definitions/WtAction" }, | |
{ "$ref": "#/definitions/CloseOtherTabsAction" }, | |
{ "$ref": "#/definitions/CloseTabsAfterAction" }, | |
{ "$ref": "#/definitions/CloseTabAction" }, | |
{ "$ref": "#/definitions/ScrollUpAction" }, | |
{ "$ref": "#/definitions/ScrollDownAction" }, | |
{ "$ref": "#/definitions/MoveTabAction" }, | |
{ "$ref": "#/definitions/FindMatchAction" }, | |
{ "$ref": "#/definitions/NewWindowAction" }, | |
{ "$ref": "#/definitions/NextTabAction" }, | |
{ "$ref": "#/definitions/PrevTabAction" }, | |
{ "$ref": "#/definitions/RenameTabAction" }, | |
{ "$ref": "#/definitions/RenameWindowAction" }, | |
{ "$ref": "#/definitions/FocusPaneAction" }, | |
{ "$ref": "#/definitions/GlobalSummonAction" }, | |
{ "$ref": "#/definitions/QuakeModeAction" }, | |
{ "type": "null" } | |
] | |
}, | |
"keys": { | |
"description": "Defines the key combinations used to call the command. It must be composed of...\n -any number of modifiers (ctrl/alt/shift)\n -a non-modifier key", | |
"oneOf": [ | |
{ | |
"$ref": "#/definitions/KeyChordSegment" | |
}, | |
{ | |
"items": { | |
"$ref": "#/definitions/KeyChordSegment" | |
}, | |
"minItems": 1, | |
"type": "array" | |
} | |
] | |
}, | |
"icon": { "$ref": "#/definitions/Icon" }, | |
"name": { | |
"description": "The name that will appear in the command palette. If one isn't provided, the terminal will attempt to automatically generate a name.\nIf name is a string, it will be the name of the command.\nIf name is a object, the key property of the object will be used to lookup a localized string resource for the command", | |
"properties": { | |
"key": { | |
"type": "string" | |
} | |
}, | |
"type": [ | |
"string", | |
"object", | |
"null" | |
] | |
}, | |
"iterateOn": { | |
"type": "string", | |
"description": "Used to create iterable commands based on other objects in your settings. Possible values:\n- \"profiles\" \n- \"schemes\"", | |
"enum": [ | |
"profiles", | |
"schemes" | |
] | |
}, | |
"commands": { | |
"description": "List of commands to execute", | |
"items": { | |
"$ref": "#/definitions/Keybinding/properties/command" | |
}, | |
"minItems": 1, | |
"type": "array" | |
} | |
}, | |
"anyOf": [ | |
{"required": ["name","commands"]}, | |
{"required": ["command"]} | |
], | |
"type": "object" | |
}, | |
"Globals": { | |
"additionalProperties": true, | |
"description": "Properties that affect the entire window, regardless of the profile settings.", | |
"properties": { | |
"alwaysOnTop": { | |
"default": false, | |
"description": "When set to true, the window is created on top of all other windows. If multiple windows are all \"always on top\", the most recently focused one will be the topmost", | |
"type": "boolean" | |
}, | |
"alwaysShowTabs": { | |
"default": true, | |
"description": "When set to true, tabs are always displayed. When set to false and \"showTabsInTitlebar\" is set to false, tabs only appear after opening a new tab.", | |
"type": "boolean" | |
}, | |
"centerOnLaunch": { | |
"default": false, | |
"description": "When set to `true`, the terminal window will auto-center itself on the display it opens on. The terminal will use the \"initialPosition\" to determine which display to open on.", | |
"type": "boolean" | |
}, | |
"inputServiceWarning": { | |
"default": true, | |
"description": "Warning if 'Touch Keyboard and Handwriting Panel Service' is disabled.", | |
"type": "boolean" | |
}, | |
"copyOnSelect": { | |
"default": false, | |
"description": "When set to true, a selection is immediately copied to your clipboard upon creation. When set to false, the selection persists and awaits further action.", | |
"type": "boolean" | |
}, | |
"focusFollowMouse": { | |
"default": false, | |
"description": "When set to true, the terminal will focus the pane on mouse hover.", | |
"type": "boolean" | |
}, | |
"copyFormatting": { | |
"default": true, | |
"description": "When set to `true`, the color and font formatting of selected text is also copied to your clipboard. When set to `false`, only plain text is copied to your clipboard. An array of specific formats can also be used. Supported array values include `html` and `rtf`. Plain text is always copied.", | |
"$ref": "#/definitions/CopyFormat" | |
}, | |
"trimBlockSelection": { | |
"default": false, | |
"description": "When set to true, trailing white-spaces will be removed from text in rectangular (block) selection while copied to your clipboard. When set to false, the white-spaces will be preserved.", | |
"type": "boolean" | |
}, | |
"experimental.detectURLs": { | |
"default": true, | |
"description": "When set to true, URLs will be detected by the Terminal. This will cause URLs to underline on hover and be clickable by pressing Ctrl.", | |
"type": "boolean" | |
}, | |
"disableAnimations": { | |
"default": false, | |
"description": "When set to `true`, visual animations will be disabled across the application.", | |
"type": "boolean" | |
}, | |
"largePasteWarning": { | |
"default": true, | |
"description": "When set to true, trying to paste text with more than 5 KiB of characters will display a warning asking you whether to continue or not with the paste.", | |
"type": "boolean" | |
}, | |
"multiLinePasteWarning": { | |
"default": true, | |
"description": "When set to true, trying to paste text with a \"new line\" character will display a warning asking you whether to continue or not with the paste.", | |
"type": "boolean" | |
}, | |
"defaultProfile": { | |
"description": "Sets the default profile. Opens by clicking the \"+\" icon or typing the key binding assigned to \"newTab\".", | |
"type": "string" | |
}, | |
"startupActions": { | |
"description": "Sets the list of actions to apply if no command line is provided. Uses the same format as command line arguments", | |
"type": "string" | |
}, | |
"disabledProfileSources": { | |
"description": "Disables all the dynamic profile generators in this list, preventing them from adding their profiles to the list of profiles on startup.", | |
"items": { | |
"$ref": "#/definitions/DynamicProfileSource" | |
}, | |
"type": "array" | |
}, | |
"experimental.rendering.forceFullRepaint": { | |
"description": "When set to true, we will redraw the entire screen each frame. When set to false, we will render only the updates to the screen between frames.", | |
"type": "boolean" | |
}, | |
"experimental.rendering.software": { | |
"description": "When set to true, we will use the software renderer (a.k.a. WARP) instead of the hardware one.", | |
"type": "boolean" | |
}, | |
"experimental.input.forceVT": { | |
"description": "Force the terminal to use the legacy input encoding. Certain keys in some applications may stop working when enabling this setting.", | |
"type": "boolean" | |
}, | |
"initialCols": { | |
"default": 120, | |
"description": "The number of columns displayed in the window upon first load. If \"launchMode\" is set to \"maximized\" (or \"maximizedFocus\"), this property is ignored.", | |
"maximum": 999, | |
"minimum": 1, | |
"type": "integer" | |
}, | |
"initialPosition": { | |
"$ref": "#/definitions/Coordinates", | |
"description": "The position of the top left corner of the window upon first load. On a system with multiple displays, these coordinates are relative to the top left of the primary display. If \"launchMode\" is set to \"maximized\" (or \"maximizedFocus\"), the window will be maximized on the monitor specified by those coordinates." | |
}, | |
"initialRows": { | |
"default": 30, | |
"description": "The number of rows displayed in the window upon first load. If \"launchMode\" is set to \"maximized\" (or \"maximizedFocus\"), this property is ignored.", | |
"maximum": 999, | |
"minimum": 1, | |
"type": "integer" | |
}, | |
"startOnUserLogin": { | |
"default": false, | |
"description": "When set to true, this enables the launch of Windows Terminal at startup. Setting this to false will disable the startup task entry. If the Windows Terminal startup task entry is disabled either by org policy or by user action this setting will have no effect.", | |
"type": "boolean" | |
}, | |
"launchMode": { | |
"default": "default", | |
"description": "Defines whether the terminal will launch as maximized, full screen, or in a window. Setting this to \"focus\" is equivalent to launching the terminal in the \"default\" mode, but with the focus mode enabled. Similar, setting this to \"maximizedFocus\" will result in launching the terminal in a maximized window with the focus mode enabled.", | |
"enum": [ | |
"fullscreen", | |
"maximized", | |
"default", | |
"focus", | |
"maximizedFocus" | |
], | |
"type": "string" | |
}, | |
"rowsToScroll": { | |
"default": "system", | |
"description": "This parameter once allowed you to override the systemwide \"choose how many lines to scroll at one time\" setting. It no longer does so. However, you can customize the number of lines to scroll in \"scrollUp\" and \"scrollDown\" bindings.", | |
"maximum": 999, | |
"minimum": 0, | |
"type": [ "integer", "string" ], | |
"deprecated": true | |
}, | |
"minimizeToNotificationArea": { | |
"default": "false", | |
"description": "When set to true, minimizing a Terminal window will no longer appear in the taskbar. Instead, a Terminal icon will appear in the notification area through which the user can access their windows.", | |
"type": "boolean" | |
}, | |
"alwaysShowNotificationIcon": { | |
"default": "false", | |
"description": "When set to true, the Terminal's notification icon will always be shown in the notification area.", | |
"type": "boolean" | |
}, | |
"actions": { | |
"description": "Properties are specific to each custom action.", | |
"items": { | |
"$ref": "#/definitions/Keybinding" | |
}, | |
"type": "array" | |
}, | |
"keybindings": { | |
"description": "[deprecated] Use actions instead.", | |
"deprecated": true, | |
"items": { | |
"$ref": "#/definitions/Keybinding" | |
}, | |
"type": "array" | |
}, | |
"language": { | |
"default": "", | |
"description": "Sets an override for the app's preferred language, expressed as a BCP-47 language tag like en-US.", | |
"type": "string" | |
}, | |
"theme": { | |
"default": "system", | |
"description": "Sets the theme of the application. The special value \"system\" refers to the active Windows system theme.", | |
"enum": [ | |
"light", | |
"dark", | |
"system" | |
], | |
"type": "string" | |
}, | |
"showTabsInTitlebar": { | |
"default": true, | |
"description": "When set to true, the tabs are moved into the titlebar and the titlebar disappears. When set to false, the titlebar sits above the tabs.", | |
"type": "boolean" | |
}, | |
"showTerminalTitleInTitlebar": { | |
"default": true, | |
"description": "When set to true, titlebar displays the title of the selected tab. When set to false, titlebar displays \"Windows Terminal\".", | |
"type": "boolean" | |
}, | |
"snapToGridOnResize": { | |
"default": false, | |
"description": "When set to true, the window will snap to the nearest character boundary on resize. When false, the window will resize smoothly", | |
"type": "boolean" | |
}, | |
"tabWidthMode": { | |
"default": "equal", | |
"description": "Sets the width of the tabs. Possible values include:\n -\"equal\" sizes each tab to the same width\n -\"titleLength\" sizes each tab to the length of its title\n -\"compact\" sizes each tab to the length of its title when focused, and shrinks to the size of only the icon when the tab is unfocused.", | |
"enum": [ | |
"compact", | |
"equal", | |
"titleLength" | |
], | |
"type": "string" | |
}, | |
"wordDelimiters": { | |
"default": " ./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}~?│", | |
"description": "Determines the delimiters used in a double click selection.", | |
"type": "string" | |
}, | |
"confirmCloseAllTabs": { | |
"default": true, | |
"description": "When set to \"true\" closing a window with multiple tabs open will require confirmation. When set to \"false\", the confirmation dialog will not appear.", | |
"type": "boolean" | |
}, | |
"useTabSwitcher": { | |
"default": true, | |
"description": "Deprecated. Please use \"tabSwitcherMode\" instead.", | |
"oneOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"enum": [ | |
"mru", | |
"inOrder", | |
"disabled" | |
], | |
"type": "string" | |
} | |
], | |
"deprecated": true | |
}, | |
"tabSwitcherMode": { | |
"default": "inOrder", | |
"description": "When set to \"true\" or \"mru\", the \"nextTab\" and \"prevTab\" commands will use the tab switcher UI, with most-recently-used ordering. When set to \"inOrder\", these actions will switch tabs in their current ordering. Set to \"false\" to disable the tab switcher.", | |
"oneOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"enum": [ | |
"mru", | |
"inOrder", | |
"disabled" | |
], | |
"type": "string" | |
} | |
] | |
}, | |
"windowingBehavior": { | |
"default": "useNew", | |
"description": "Controls how new terminal instances attach to existing windows. \"useNew\" will always create a new window. \"useExisting\" will create new tabs in the most recently used window on this virtual desktop, and \"useAnyExisting\" will create tabs in the most recent window on any desktop.", | |
"enum": [ | |
"useNew", | |
"useExisting", | |
"useAnyExisting" | |
], | |
"type": "string" | |
} | |
}, | |
"required": [ | |
"defaultProfile" | |
], | |
"type": "object" | |
}, | |
"Profile": { | |
"description": "Properties specific to a unique profile.", | |
"additionalProperties": false, | |
"properties": { | |
"acrylicOpacity": { | |
"default": 0.5, | |
"description": "When useAcrylic is set to true, it sets the transparency of the window for the profile. Accepts floating point values from 0-1 (default 0.5).", | |
"maximum": 1, | |
"minimum": 0, | |
"type": "number" | |
}, | |
"antialiasingMode": { | |
"default": "grayscale", | |
"description": "Controls how text is antialiased in the renderer. Possible values are \"grayscale\", \"cleartype\" and \"aliased\". Note that changing this setting will require starting a new terminal instance.", | |
"enum": [ | |
"grayscale", | |
"cleartype", | |
"aliased" | |
], | |
"type": "string" | |
}, | |
"background": { | |
"$ref": "#/definitions/Color", | |
"default": "#0c0c0c", | |
"description": "Sets the background color of the text. Overrides \"background\" from the color scheme. Uses hex color format: \"#rrggbb\".", | |
"type": ["string", "null"] | |
}, | |
"unfocusedAppearance": { | |
"$ref": "#/definitions/AppearanceConfig", | |
"description": "Sets the appearance of the terminal when it is unfocused.", | |
"type": ["object", "null"] | |
}, | |
"font": { | |
"$ref": "#/definitions/FontConfig", | |
"description": "Sets the font options of the terminal.", | |
"type": ["object", "null"] | |
}, | |
"backgroundImage": { | |
"description": "Sets the file location of the image to draw over the window background.", | |
"oneOf": [ | |
{ | |
"type": ["string", null] | |
}, | |
{ | |
"enum": [ | |
"desktopWallpaper" | |
] | |
} | |
], | |
"type": [ "string", "null" ] | |
}, | |
"backgroundImageAlignment": { | |
"default": "center", | |
"enum": [ | |
"bottom", | |
"bottomLeft", | |
"bottomRight", | |
"center", | |
"left", | |
"right", | |
"top", | |
"topLeft", | |
"topRight" | |
], | |
"description": "Sets how the background image aligns to the boundaries of the window. Possible values: \"center\", \"left\", \"top\", \"right\", \"bottom\", \"topLeft\", \"topRight\", \"bottomLeft\", \"bottomRight\"", | |
"type": "string" | |
}, | |
"backgroundImageOpacity": { | |
"default": 1.0, | |
"description": "Sets the transparency of the background image. Accepts floating point values from 0-1.", | |
"maximum": 1.0, | |
"minimum": 0.0, | |
"type": "number" | |
}, | |
"backgroundImageStretchMode": { | |
"default": "uniformToFill", | |
"description": "Sets how the background image is resized to fill the window.", | |
"enum": [ | |
"fill", | |
"none", | |
"uniform", | |
"uniformToFill" | |
], | |
"type": "string" | |
}, | |
"bellStyle": { | |
"default": "audible", | |
"description": "Controls what happens when the application emits a BEL character. When set to \"all\", the Terminal will play a sound, flash the taskbar icon (if the terminal window is not in focus) and flash the window. An array of specific behaviors can also be used. Supported array values include `audible`, `window` and `taskbar`. When set to \"none\", nothing will happen.", | |
"$ref": "#/definitions/BellStyle" | |
}, | |
"closeOnExit": { | |
"default": "graceful", | |
"description": "Sets how the profile reacts to termination or failure to launch. Possible values:\n -\"graceful\" (close when exit is typed or the process exits normally)\n -\"always\" (always close)\n -\"never\" (never close).\ntrue and false are accepted as synonyms for \"graceful\" and \"never\" respectively.", | |
"oneOf": [ | |
{ | |
"enum": [ | |
"never", | |
"graceful", | |
"always" | |
], | |
"type": "string" | |
}, | |
{ | |
"type": "boolean" | |
} | |
] | |
}, | |
"colorScheme": { | |
"default": "Campbell", | |
"description": "Name of the terminal color scheme to use. Color schemes are defined under \"schemes\".", | |
"type": "string" | |
}, | |
"commandline": { | |
"description": "Executable used in the profile.", | |
"type": "string" | |
}, | |
"cursorColor": { | |
"oneOf": [ | |
{ "$ref": "#/definitions/Color" }, | |
{"type": "null"} | |
], | |
"description": "Sets the color of the cursor. Overrides the cursor color from the color scheme. Uses hex color format: \"#rrggbb\"." | |
}, | |
"cursorHeight": { | |
"description": "Sets the percentage height of the cursor starting from the bottom. Only works when cursorShape is set to \"vintage\". Accepts values from 1-100.", | |
"maximum": 100, | |
"minimum": 1, | |
"type": ["integer","null"], | |
"default": 25 | |
}, | |
"cursorShape": { | |
"default": "bar", | |
"description": "Sets the shape of the cursor. Possible values:\n -\"bar\" ( ┃, default )\n -\"doubleUnderscore\" ( ‗ )\n -\"emptyBox\" ( ▯ )\n -\"filledBox\" ( █ )\n -\"underscore\" ( ▁ )\n -\"vintage\" ( ▃ )", | |
"enum": [ | |
"bar", | |
"doubleUnderscore", | |
"emptyBox", | |
"filledBox", | |
"underscore", | |
"vintage" | |
], | |
"type": "string" | |
}, | |
"experimental.retroTerminalEffect": { | |
"description": "When set to true, enable retro terminal effects. This is an experimental feature, and its continued existence is not guaranteed.", | |
"type": "boolean" | |
}, | |
"experimental.pixelShaderPath": { | |
"description": "Use to set a path to a pixel shader to use with the Terminal. Overrides `experimental.retroTerminalEffect`. This is an experimental feature, and its continued existence is not guaranteed.", | |
"type": "string" | |
}, | |
"fontFace": { | |
"default": "Cascadia Mono", | |
"description": "[deprecated] Define 'face' within the 'font' object instead.", | |
"type": "string", | |
"deprecated": true | |
}, | |
"fontSize": { | |
"default": 12, | |
"description": "[deprecated] Define 'size' within the 'font' object instead.", | |
"minimum": 1, | |
"type": "integer", | |
"deprecated": true | |
}, | |
"fontWeight": { | |
"default": "normal", | |
"description": "[deprecated] Define 'weight' within the 'font' object instead.", | |
"oneOf": [ | |
{ | |
"enum": [ | |
"thin", | |
"extra-light", | |
"light", | |
"semi-light", | |
"normal", | |
"medium", | |
"semi-bold", | |
"bold", | |
"extra-bold", | |
"black", | |
"extra-black" | |
], | |
"type": "string" | |
}, | |
{ | |
"maximum": 990, | |
"minimum": 100, | |
"type": "integer" | |
} | |
], | |
"deprecated": true | |
}, | |
"foreground": { | |
"$ref": "#/definitions/Color", | |
"default": "#cccccc", | |
"description": "Sets the text color. Overrides \"foreground\" from the color scheme. Uses hex color format: \"#rrggbb\".", | |
"type": ["string", "null"] | |
}, | |
"guid": { | |
"$ref": "#/definitions/ProfileGuid", | |
"description": "Unique identifier of the profile. Written in registry format: \"{00000000-0000-0000-0000-000000000000}\"." | |
}, | |
"hidden": { | |
"default": false, | |
"description": "If set to true, the profile will not appear in the list of profiles. This can be used to hide default profiles and dynamically generated profiles, while leaving them in your settings file.", | |
"type": "boolean" | |
}, | |
"historySize": { | |
"default": 9001, | |
"description": "The number of lines above the ones displayed in the window you can scroll back to.", | |
"minimum": -1, | |
"type": "integer" | |
}, | |
"icon":{ "$ref": "#/definitions/Icon" }, | |
"name": { | |
"description": "Name of the profile. Displays in the dropdown menu.", | |
"minLength": 1, | |
"type": "string" | |
}, | |
"padding": { | |
"default": "8, 8, 8, 8", | |
"description": "Sets the padding around the text within the window. Can have three different formats:\n -\"#\" sets the same padding for all sides \n -\"#, #\" sets the same padding for left-right and top-bottom\n -\"#, #, #, #\" sets the padding individually for left, top, right, and bottom.", | |
"oneOf": [ | |
{ | |
"pattern": "^-?[0-9]+(\\.[0-9]+)?( *, *-?[0-9]+(\\.[0-9]+)?|( *, *-?[0-9]+(\\.[0-9]+)?){3})?$", | |
"type": "string" | |
}, | |
{ | |
"type": "integer" | |
} | |
] | |
}, | |
"scrollbarState": { | |
"default": "visible", | |
"description": "Defines the visibility of the scrollbar.", | |
"enum": [ | |
"visible", | |
"hidden" | |
], | |
"type": "string" | |
}, | |
"selectionBackground": { | |
"oneOf": [ | |
{"$ref": "#/definitions/Color"}, | |
{ "type": "null" } | |
], | |
"description": "Sets the background color of selected text. Overrides selectionBackground set in the color scheme. Uses hex color format: \"#rrggbb\"." | |
}, | |
"snapOnInput": { | |
"default": true, | |
"description": "When set to true, the window will scroll to the command input line when typing. When set to false, the window will not scroll when you start typing.", | |
"type": "boolean" | |
}, | |
"altGrAliasing": { | |
"default": true, | |
"description": "By default Windows treats Ctrl+Alt as an alias for AltGr. When altGrAliasing is set to false, this behavior will be disabled.", | |
"type": "boolean" | |
}, | |
"source": { | |
"description": "Stores the name of the profile generator that originated this profile.", | |
"type": ["string", "null"] | |
}, | |
"startingDirectory": { | |
"description": "The directory the shell starts in when it is loaded.", | |
"type": "string" | |
}, | |
"suppressApplicationTitle": { | |
"description": "When set to true, tabTitle overrides the default title of the tab and any title change messages from the application will be suppressed. When set to false, tabTitle behaves as normal.", | |
"type": "boolean", | |
"default": false | |
}, | |
"tabColor": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color of the profile's tab. Using the tab color picker will override this color.", | |
"type": ["string", "null"] | |
}, | |
"tabTitle": { | |
"description": "If set, will replace the name as the title to pass to the shell on startup. Some shells (like bash) may choose to ignore this initial value, while others (cmd, powershell) may use this value over the lifetime of the application.", | |
"type": ["string", "null"] | |
}, | |
"useAcrylic": { | |
"default": false, | |
"description": "When set to true, the window will have an acrylic background. When set to false, the window will have a plain, untextured background.", | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"ProfileList": { | |
"description": "A list of profiles and the properties specific to each.", | |
"items": { | |
"$ref": "#/definitions/Profile", | |
"required": [ | |
"guid", | |
"name" | |
] | |
}, | |
"type": "array" | |
}, | |
"ProfilesObject": { | |
"description": "A list of profiles and default settings that apply to all of them", | |
"properties": { | |
"list": { | |
"$ref": "#/definitions/ProfileList" | |
}, | |
"defaults": { | |
"description": "The default settings that apply to every profile.", | |
"$ref": "#/definitions/Profile" | |
} | |
}, | |
"type": "object" | |
}, | |
"SchemeList": { | |
"description": "Properties are specific to each color scheme. ColorTool is a great tool you can use to create and explore new color schemes. All colors use hex color format.", | |
"items": { | |
"additionalProperties": false, | |
"properties": { | |
"name": { | |
"description": "Name of the color scheme.", | |
"minLength": 1, | |
"type": "string" | |
}, | |
"background": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the background color of the color scheme." | |
}, | |
"black": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI black." | |
}, | |
"blue": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI blue." | |
}, | |
"brightBlack": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright black." | |
}, | |
"brightBlue": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright blue." | |
}, | |
"brightCyan": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright cyan." | |
}, | |
"brightGreen": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright green." | |
}, | |
"brightPurple": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright purple." | |
}, | |
"brightRed": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright red." | |
}, | |
"brightWhite": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright white." | |
}, | |
"brightYellow": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI bright yellow." | |
}, | |
"cursorColor": { | |
"$ref": "#/definitions/Color", | |
"default": "#FFFFFF", | |
"description": "Sets the cursor color of the color scheme." | |
}, | |
"cyan": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI cyan." | |
}, | |
"foreground": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the foreground color of the color scheme." | |
}, | |
"green": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI green." | |
}, | |
"purple": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI purple." | |
}, | |
"red": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI red." | |
}, | |
"selectionBackground": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the selection background color of the color scheme." | |
}, | |
"white": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI white." | |
}, | |
"yellow": { | |
"$ref": "#/definitions/Color", | |
"description": "Sets the color used as ANSI yellow." | |
} | |
}, | |
"type": "object" | |
}, | |
"type": "array" | |
} | |
}, | |
"allOf": [ | |
{ "$ref": "#/definitions/Globals" }, | |
{ | |
"additionalItems": true, | |
"properties": { | |
"profiles": { | |
"oneOf": [ | |
{ "$ref": "#/definitions/ProfileList" }, | |
{ "$ref": "#/definitions/ProfilesObject" } | |
] | |
}, | |
"schemes": { "$ref": "#/definitions/SchemeList" } | |
}, | |
"required": [ | |
"profiles", | |
"schemes", | |
"defaultProfile" | |
] | |
} | |
] | |
} |
This file contains 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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "JSON schema for NPM package.json files", | |
"definitions": { | |
"person": { | |
"description": "A person who has been involved in creating or maintaining this package.", | |
"type": ["object", "string"], | |
"required": ["name"], | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string", | |
"format": "uri" | |
}, | |
"email": { | |
"type": "string", | |
"format": "email" | |
} | |
} | |
}, | |
"dependency": { | |
"description": "Dependencies are specified with a simple hash of package name to version range. The version range is a string which has one or more space-separated descriptors. Dependencies can also be identified with a tarball or git URL.", | |
"type": "object", | |
"additionalProperties": { | |
"type": "string" | |
} | |
}, | |
"scriptsInstallAfter": { | |
"description": "Run AFTER the package is installed.", | |
"type": "string" | |
}, | |
"scriptsPublishAfter": { | |
"description": "Run AFTER the package is published.", | |
"type": "string" | |
}, | |
"scriptsRestart": { | |
"description": "Run by the 'npm restart' command. Note: 'npm restart' will run the stop and start scripts if no restart script is provided.", | |
"type": "string" | |
}, | |
"scriptsStart": { | |
"description": "Run by the 'npm start' command.", | |
"type": "string" | |
}, | |
"scriptsStop": { | |
"description": "Run by the 'npm stop' command.", | |
"type": "string" | |
}, | |
"scriptsTest": { | |
"description": "Run by the 'npm test' command.", | |
"type": "string" | |
}, | |
"scriptsUninstallBefore": { | |
"description": "Run BEFORE the package is uninstalled.", | |
"type": "string" | |
}, | |
"scriptsVersionBefore": { | |
"description": "Run BEFORE bump the package version.", | |
"type": "string" | |
}, | |
"packageExportsEntryPath": { | |
"type": ["string", "null"], | |
"description": "The module path that is resolved when this specifier is imported. Set to `null` to disallow importing this module.", | |
"pattern": "^\\./" | |
}, | |
"packageExportsEntryObject": { | |
"type": "object", | |
"description": "Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern.", | |
"properties": { | |
"require": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when this specifier is imported as a CommonJS module using the `require(...)` function." | |
}, | |
"import": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when this specifier is imported as an ECMAScript module using an `import` declaration or the dynamic `import(...)` function." | |
}, | |
"node": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when this environment is Node.js." | |
}, | |
"default": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when no other export type matches." | |
} | |
}, | |
"patternProperties": { | |
"^(?![\\.0-9]).": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when this environment matches the property name." | |
} | |
}, | |
"additionalProperties": false | |
}, | |
"packageExportsEntry": { | |
"oneOf": [ | |
{ | |
"$ref": "#/definitions/packageExportsEntryPath" | |
}, | |
{ | |
"$ref": "#/definitions/packageExportsEntryObject" | |
} | |
] | |
}, | |
"packageExportsFallback": { | |
"type": "array", | |
"description": "Used to allow fallbacks in case this environment doesn't support the preceding entries.", | |
"items": { | |
"$ref": "#/definitions/packageExportsEntry" | |
} | |
}, | |
"packageExportsEntryOrFallback": { | |
"oneOf": [ | |
{ | |
"$ref": "#/definitions/packageExportsEntry" | |
}, | |
{ | |
"$ref": "#/definitions/packageExportsFallback" | |
} | |
] | |
} | |
}, | |
"type": "object", | |
"patternProperties": { | |
"^_": { | |
"description": "Any property starting with _ is valid.", | |
"tsType": "any" | |
} | |
}, | |
"properties": { | |
"name": { | |
"description": "The name of the package.", | |
"type": "string", | |
"maxLength": 214, | |
"minLength": 1, | |
"pattern": "^(?:@[a-z0-9-*~][a-z0-9-*._~]*/)?[a-z0-9-~][a-z0-9-._~]*$" | |
}, | |
"version": { | |
"description": "Version must be parseable by node-semver, which is bundled with npm as a dependency.", | |
"type": "string" | |
}, | |
"description": { | |
"description": "This helps people discover your package, as it's listed in 'npm search'.", | |
"type": "string" | |
}, | |
"keywords": { | |
"description": "This helps people discover your package as it's listed in 'npm search'.", | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"homepage": { | |
"description": "The url to the project homepage.", | |
"type": "string" | |
}, | |
"bugs": { | |
"description": "The url to your project's issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package.", | |
"type": ["object", "string"], | |
"properties": { | |
"url": { | |
"type": "string", | |
"description": "The url to your project's issue tracker.", | |
"format": "uri" | |
}, | |
"email": { | |
"type": "string", | |
"description": "The email address to which issues should be reported.", | |
"format": "email" | |
} | |
} | |
}, | |
"license": { | |
"type": "string", | |
"description": "You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it." | |
}, | |
"licenses": { | |
"description": "DEPRECATED: Instead, use SPDX expressions, like this: { \"license\": \"ISC\" } or { \"license\": \"(MIT OR Apache-2.0)\" } see: 'https://docs.npmjs.com/files/package.json#license'.", | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"type": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string", | |
"format": "uri" | |
} | |
} | |
} | |
}, | |
"author": { | |
"$ref": "#/definitions/person" | |
}, | |
"contributors": { | |
"description": "A list of people who contributed to this package.", | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/person" | |
} | |
}, | |
"maintainers": { | |
"description": "A list of people who maintains this package.", | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/person" | |
} | |
}, | |
"files": { | |
"description": "The 'files' field is an array of files to include in your project. If you name a folder in the array, then it will also include the files inside that folder.", | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"main": { | |
"description": "The main field is a module ID that is the primary entry point to your program.", | |
"type": "string" | |
}, | |
"exports": { | |
"description": "The \"exports\" field is used to restrict external access to non-exported module files, also enables a module to import itself using \"name\".", | |
"oneOf": [ | |
{ | |
"$ref": "#/definitions/packageExportsEntryPath", | |
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field." | |
}, | |
{ | |
"type": "object", | |
"properties": { | |
".": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field." | |
}, | |
"./": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path prefix that is resolved when the module specifier starts with \"name/\", set to \"./\" to allow external modules to import any subpath." | |
} | |
}, | |
"patternProperties": { | |
"^\\./": { | |
"$ref": "#/definitions/packageExportsEntryOrFallback", | |
"description": "The module path that is resolved when the path component of the module specifier matches the property name." | |
} | |
}, | |
"additionalProperties": false | |
}, | |
{ | |
"$ref": "#/definitions/packageExportsEntryObject", | |
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field." | |
}, | |
{ | |
"$ref": "#/definitions/packageExportsFallback", | |
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field." | |
} | |
] | |
}, | |
"bin": { | |
"type": ["string", "object"], | |
"additionalProperties": { | |
"type": "string" | |
} | |
}, | |
"type": { | |
"description": "When set to \"module\", the type field allows a package to specify all .js files within are ES modules. If the \"type\" field is omitted or set to \"commonjs\", all .js files are treated as CommonJS.", | |
"type": "string", | |
"enum": ["commonjs", "module"], | |
"default": "commonjs" | |
}, | |
"types": { | |
"description": "Set the types property to point to your bundled declaration file.", | |
"type": "string" | |
}, | |
"typings": { | |
"description": "Note that the \"typings\" field is synonymous with \"types\", and could be used as well.", | |
"type": "string" | |
}, | |
"typesVersions": { | |
"description": "The \"typesVersions\" field is used since TypeScript 3.1 to support features that were only made available in newer TypeScript versions.", | |
"type": "object", | |
"additionalProperties": { | |
"description": "Contains overrides for the TypeScript version that matches the version range matching the property key.", | |
"type": "object", | |
"properties": { | |
"*": { | |
"description": "Maps all file paths to the file paths specified in the array.", | |
"type": "array", | |
"items": { | |
"type": "string", | |
"pattern": "^[^*]*(?:\\*[^*]*)?$" | |
} | |
} | |
}, | |
"patternProperties": { | |
"^[^*]+$": { | |
"description": "Maps the file path matching the property key to the file paths specified in the array.", | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"^[^*]*\\*[^*]*$": { | |
"description": "Maps file paths matching the pattern specified in property key to file paths specified in the array.", | |
"type": "array", | |
"items": { | |
"type": "string", | |
"pattern": "^[^*]*(?:\\*[^*]*)?$" | |
} | |
} | |
}, | |
"additionalProperties": false | |
} | |
}, | |
"man": { | |
"type": ["array", "string"], | |
"description": "Specify either a single file or an array of filenames to put in place for the man program to find.", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"directories": { | |
"type": "object", | |
"properties": { | |
"bin": { | |
"description": "If you specify a 'bin' directory, then all the files in that folder will be used as the 'bin' hash.", | |
"type": "string" | |
}, | |
"doc": { | |
"description": "Put markdown files in here. Eventually, these will be displayed nicely, maybe, someday.", | |
"type": "string" | |
}, | |
"example": { | |
"description": "Put example scripts in here. Someday, it might be exposed in some clever way.", | |
"type": "string" | |
}, | |
"lib": { | |
"description": "Tell people where the bulk of your library is. Nothing special is done with the lib folder in any way, but it's useful meta info.", | |
"type": "string" | |
}, | |
"man": { | |
"description": "A folder that is full of man pages. Sugar to generate a 'man' array by walking the folder.", | |
"type": "string" | |
}, | |
"test": { | |
"type": "string" | |
} | |
} | |
}, | |
"repository": { | |
"description": "Specify the place where your code lives. This is helpful for people who want to contribute.", | |
"type": ["object", "string"], | |
"properties": { | |
"type": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string" | |
}, | |
"directory": { | |
"type": "string" | |
} | |
} | |
}, | |
"scripts": { | |
"description": "The 'scripts' member is an object hash of script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.", | |
"type": "object", | |
"properties": { | |
"lint": { | |
"type": "string", | |
"description": "Run code quality tools, e.g. ESLint, TSLint, etc." | |
}, | |
"prepublish": { | |
"type": "string", | |
"description": "Run BEFORE the package is published (Also run on local npm install without any arguments)." | |
}, | |
"prepare": { | |
"type": "string", | |
"description": "Run both BEFORE the package is packed and published, and on local npm install without any arguments. This is run AFTER prepublish, but BEFORE prepublishOnly." | |
}, | |
"prepublishOnly": { | |
"type": "string", | |
"description": "Run BEFORE the package is prepared and packed, ONLY on npm publish." | |
}, | |
"prepack": { | |
"type": "string", | |
"description": "run BEFORE a tarball is packed (on npm pack, npm publish, and when installing git dependencies)." | |
}, | |
"postpack": { | |
"type": "string", | |
"description": "Run AFTER the tarball has been generated and moved to its final destination." | |
}, | |
"publish": { | |
"$ref": "#/definitions/scriptsPublishAfter" | |
}, | |
"postpublish": { | |
"$ref": "#/definitions/scriptsPublishAfter" | |
}, | |
"preinstall": { | |
"type": "string", | |
"description": "Run BEFORE the package is installed." | |
}, | |
"install": { | |
"$ref": "#/definitions/scriptsInstallAfter" | |
}, | |
"postinstall": { | |
"$ref": "#/definitions/scriptsInstallAfter" | |
}, | |
"preuninstall": { | |
"$ref": "#/definitions/scriptsUninstallBefore" | |
}, | |
"uninstall": { | |
"$ref": "#/definitions/scriptsUninstallBefore" | |
}, | |
"postuninstall": { | |
"type": "string", | |
"description": "Run AFTER the package is uninstalled." | |
}, | |
"preversion": { | |
"$ref": "#/definitions/scriptsVersionBefore" | |
}, | |
"version": { | |
"$ref": "#/definitions/scriptsVersionBefore" | |
}, | |
"postversion": { | |
"type": "string", | |
"description": "Run AFTER bump the package version." | |
}, | |
"pretest": { | |
"$ref": "#/definitions/scriptsTest" | |
}, | |
"test": { | |
"$ref": "#/definitions/scriptsTest" | |
}, | |
"posttest": { | |
"$ref": "#/definitions/scriptsTest" | |
}, | |
"prestop": { | |
"$ref": "#/definitions/scriptsStop" | |
}, | |
"stop": { | |
"$ref": "#/definitions/scriptsStop" | |
}, | |
"poststop": { | |
"$ref": "#/definitions/scriptsStop" | |
}, | |
"prestart": { | |
"$ref": "#/definitions/scriptsStart" | |
}, | |
"start": { | |
"$ref": "#/definitions/scriptsStart" | |
}, | |
"poststart": { | |
"$ref": "#/definitions/scriptsStart" | |
}, | |
"prerestart": { | |
"$ref": "#/definitions/scriptsRestart" | |
}, | |
"restart": { | |
"$ref": "#/definitions/scriptsRestart" | |
}, | |
"postrestart": { | |
"$ref": "#/definitions/scriptsRestart" | |
}, | |
"serve": { | |
"type": "string", | |
"description": "Start dev server to serve application files" | |
} | |
}, | |
"additionalProperties": { | |
"type": "string", | |
"tsType": "string | undefined" | |
} | |
}, | |
"config": { | |
"description": "A 'config' hash can be used to set configuration parameters used in package scripts that persist across upgrades.", | |
"type": "object", | |
"additionalProperties": true | |
}, | |
"dependencies": { | |
"$ref": "#/definitions/dependency" | |
}, | |
"devDependencies": { | |
"$ref": "#/definitions/dependency" | |
}, | |
"optionalDependencies": { | |
"$ref": "#/definitions/dependency" | |
}, | |
"peerDependencies": { | |
"$ref": "#/definitions/dependency" | |
}, | |
"peerDependenciesMeta": { | |
"description": "When a user installs your package, warnings are emitted if packages specified in \"peerDependencies\" are not already installed. The \"peerDependenciesMeta\" field serves to provide more information on how your peer dependencies are utilized. Most commonly, it allows peer dependencies to be marked as optional. Metadata for this field is specified with a simple hash of the package name to a metadata object.", | |
"type": "object", | |
"additionalProperties": { | |
"type": "object", | |
"additionalProperties": true, | |
"properties": { | |
"optional": { | |
"description": "Specifies that this peer dependency is optional and should not be installed automatically.", | |
"type": "boolean" | |
} | |
} | |
} | |
}, | |
"bundledDependencies": { | |
"description": "Array of package names that will be bundled when publishing the package.", | |
"oneOf": [ | |
{ | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
{ | |
"type": "boolean" | |
} | |
] | |
}, | |
"bundleDependencies": { | |
"description": "DEPRECATED: This field is honored, but \"bundledDependencies\" is the correct field name.", | |
"oneOf": [ | |
{ | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
{ | |
"type": "boolean" | |
} | |
] | |
}, | |
"resolutions": { | |
"description": "Resolutions is used to support selective version resolutions, which lets you define custom package versions or ranges inside your dependencies. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions", | |
"type": "object" | |
}, | |
"packageManager": { | |
"description": "Defines which package manager is expected to be used when working on the current project. This field is currently experimental and needs to be opted-in; see https://nodejs.org/api/corepack.html", | |
"type": "string", | |
"pattern": "(npm|pnpm|yarn)@\\d+\\.\\d+\\.\\d+(-.+)?" | |
}, | |
"engines": { | |
"type": "object", | |
"properties": { | |
"node": { | |
"type": "string" | |
} | |
}, | |
"additionalProperties": { | |
"type": "string" | |
} | |
}, | |
"engineStrict": { | |
"type": "boolean" | |
}, | |
"os": { | |
"description": "Specify which operating systems your module will run on.", | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"cpu": { | |
"description": "Specify that your code only runs on certain cpu architectures.", | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"preferGlobal": { | |
"type": "boolean", | |
"description": "DEPRECATED: This option used to trigger an npm warning, but it will no longer warn. It is purely there for informational purposes. It is now recommended that you install any binaries as local devDependencies wherever possible." | |
}, | |
"private": { | |
"description": "If set to true, then npm will refuse to publish it.", | |
"oneOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"enum": [ | |
"false", | |
"true" | |
] | |
} | |
] | |
}, | |
"publishConfig": { | |
"type": "object", | |
"properties": { | |
"access": { | |
"type": "string", | |
"enum": ["public", "restricted"] | |
}, | |
"tag": { | |
"type": "string" | |
}, | |
"registry": { | |
"type": "string", | |
"format": "uri" | |
} | |
}, | |
"additionalProperties": true | |
}, | |
"dist": { | |
"type": "object", | |
"properties": { | |
"shasum": { | |
"type": "string" | |
}, | |
"tarball": { | |
"type": "string" | |
} | |
} | |
}, | |
"readme": { | |
"type": "string" | |
}, | |
"module": { | |
"description": "An ECMAScript module ID that is the primary entry point to your program.", | |
"type": "string" | |
}, | |
"esnext": { | |
"description": "A module ID with untranspiled code that is the primary entry point to your program.", | |
"type": ["string", "object"], | |
"properties": { | |
"main": { | |
"type": "string" | |
}, | |
"browser": { | |
"type": "string" | |
} | |
}, | |
"additionalProperties": { | |
"type": "string" | |
} | |
}, | |
"workspaces": { | |
"description": "Allows packages within a directory to depend on one another using direct linking of local files. Additionally, dependencies within a workspace are hoisted to the workspace root when possible to reduce duplication. Note: It's also a good idea to set \"private\" to true when using this feature.", | |
"anyOf": [ | |
{ | |
"type": "array", | |
"description": "Workspace package paths. Glob patterns are supported.", | |
"items": { | |
"type": "string" | |
} | |
}, | |
{ | |
"type": "object", | |
"properties": { | |
"packages": { | |
"type": "array", | |
"description": "Workspace package paths. Glob patterns are supported.", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"nohoist": { | |
"type": "array", | |
"description": "Packages to block from hoisting to the workspace root. Currently only supported in Yarn only.", | |
"items": { | |
"type": "string" | |
} | |
} | |
} | |
} | |
] | |
}, | |
"jspm": { "$ref": "#" } | |
}, | |
"anyOf": [ | |
{ | |
"type": "object", | |
"not": { | |
"required": ["bundledDependencies", "bundleDependencies"] | |
} | |
}, | |
{ | |
"type": "object", | |
"not": { | |
"required": ["bundleDependencies"] | |
}, | |
"required": ["bundledDependencies"] | |
}, | |
{ | |
"type": "object", | |
"not": { | |
"required": ["bundledDependencies"] | |
}, | |
"required": ["bundleDependencies"] | |
} | |
] | |
} |
This file contains 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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+t", | |
"command": "better-phpunit.run", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "win+k win+r", | |
"command": "-better-phpunit.run" | |
}, | |
{ | |
"key": "ctrl+abnt_c1", | |
"command": "editor.action.addCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+c", | |
"command": "-editor.action.addCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+'", | |
"command": "workbench.action.terminal.new" | |
}, | |
{ | |
"key": "ctrl+k ctrl+u", | |
"command": "editor.action.removeCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+u", | |
"command": "-editor.action.removeCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+alt+v", | |
"command": "turboConsoleLog.displayLogMessage" | |
}, | |
{ | |
"key": "ctrl+alt+l", | |
"command": "-turboConsoleLog.displayLogMessage" | |
} | |
] |
This file contains 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.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
"editor.rulers": [80, 120], | |
"editor.formatOnSave": true, | |
// “prettier.eslintIntegration”: true, | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll": true | |
// }, | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
"eslint.formatOnSave": true, | |
"eslint.validate": ["typescript", "typescriptreact", | |
"typescript", "typescriptreact"], | |
// Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight": "gutter", | |
// Aumenta a fonte do terminal | |
"terminal.integrated.fontSize": 12, | |
// Define o tema dos ícones na sidebar | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"extensions.ignoreRecommendations": false, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"nunjucks": "html" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"nunjucks": "html" | |
}, | |
// "javascript.updateImportsOnFileMove.enabled": "never", | |
"git.enableSmartCommit": true, | |
"editor.parameterHints.enabled": false, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
// "terminal.integrated.shell.osx": "/bin/zsh", | |
"explorer.confirmDragAndDrop": false, | |
"liveshare.featureSet": "insiders", | |
"explorer.confirmDelete": false, | |
"typescript.tsserver.log": "verbose", | |
"typescript.suggest.autoImports": true, | |
"javascript.suggest.autoImports": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
// "[javascript]": { | |
// "editor.defaultFormatter": "vscode.typescript-language-features" | |
// }, | |
"editor.renderWhitespace": "none", | |
"editor.minimap.enabled": true, | |
"workbench.editor.showTabs": true, | |
"workbench.editor.enablePreview": false, | |
"workbench.commandPalette.preserveInput": true, | |
"workbench.quickOpen.closeOnFocusLost": true, | |
"workbench.colorCustomizations": { | |
}, | |
"material-icon-theme.folders.associations": { | |
"infra": "app", | |
"entities": "class", | |
"schemas": "class", | |
"typeorm": "database", | |
"repositories": "mappings", | |
"http": "container", | |
"modules": "components", | |
"implementations": "core", | |
"dtos": "typescript", | |
"fakes": "mock", | |
"widgets":"compoennts", | |
"front-angular": "font", | |
"migrations": "tools", | |
"front-react":" React-Components", | |
"front-vue":"vue", | |
"store": "Redux-store", | |
"actions": "redux-actions", | |
"reducers": "redux-reducer", | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune" | |
}, | |
"sync.autoDownload": true, | |
"sync.autoUpload": false, | |
"sync.forceUpload": false, | |
"sync.gist": "9efceabff010de5c63986039e42fc7c7", | |
"browser-preview.startUrl": "http://localhost:8080", | |
"powermode.presets": "flames", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"code-runner.languageIdToFileExtensionMap": { | |
"bat": ".bat", | |
"powershell": ".ps1", | |
"typescript": ".ts", | |
"javascript": "node", | |
"php": "C:\\php\\php.exe", | |
"python": "python", | |
"perl": "perl", | |
"ruby": "C:\\Ruby23-x64\\bin\\ruby.exe", | |
"go": "go run", | |
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"", | |
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt", | |
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | |
"cpp": "cd $dir && g++ -std=c++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt" | |
}, | |
"code-runner.executorMap": { | |
"javascript": "node", | |
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt", | |
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | |
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | |
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | |
"php": "php", | |
"python": "python -u", | |
"perl": "perl", | |
"perl6": "perl6", | |
"ruby": "ruby", | |
"go": "go run", | |
"lua": "lua", | |
"groovy": "groovy", | |
"powershell": "powershell -ExecutionPolicy ByPass -File", | |
"bat": "cmd /c", | |
"shellscript": "bash", | |
"fsharp": "fsi", | |
"csharp": "scriptcs", | |
"vbscript": "cscript //Nologo", | |
"typescript": "ts-node", | |
"coffeescript": "coffee", | |
"scala": "scala", | |
"swift": "swift", | |
"julia": "julia", | |
"crystal": "crystal", | |
"ocaml": "ocaml", | |
"r": "Rscript", | |
"applescript": "osascript", | |
"clojure": "lein exec", | |
"haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt", | |
"rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt", | |
"racket": "racket", | |
"scheme": "csi -script", | |
"ahk": "autohotkey", | |
"autoit": "autoit3", | |
"dart": "dart", | |
"pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt", | |
"d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt", | |
"haskell": "runhaskell", | |
"nim": "nim compile --verbosity:0 --hints:off --run", | |
"lisp": "sbcl --script", | |
"kit": "kitc --run", | |
"v": "v run", | |
"sass": "sass --style expanded", | |
"scss": "scss --style expanded", | |
"less": "cd $dir && lessc $fileName $fileNameWithoutExt.css" | |
}, | |
"terminal.external.windowsExec": "C:\\tools\\cmder\\cmder.exe", | |
"terminal.integrated.automationShell.linux": "", | |
"editor.suggestSelection": "first", | |
"workbench.colorTheme": "Peacock", | |
"editor.suggest.statusBar.visible": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"remote.SSH.configFile": "C:\\Users\\viann\\.vscode\\config", | |
"javascript.validate.enable": false, | |
"remote.SSH.remotePlatform": { | |
"MERN-BACKEND-FULL": "linux", | |
"MERN-BACKEND": "linux", | |
"FORESTCHAIN-BACKEND": "linux", | |
"GOBarber-2020": "linux", | |
"DeveloperZone-Backend": "linux", | |
"Backend-Cevada": "linux", | |
"ForestChain-Backend": "linux", | |
"GoBarber-Backend": "linux" | |
}, | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
// Configures if the built-in HTML language suggests HTML5 tags, properties and values. | |
"html.suggest.html5": true, | |
"git.autofetch": true, | |
"kite.showWelcomeNotificationOnStartup": false, | |
"editor.inlineSuggest.enabled": true, | |
// Pylance | |
// I use pylance now. I added this. Problem solved. | |
"python.analysis.extraPaths": [ | |
"./path-to-code/" | |
], | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": true | |
}, | |
"redhat.telemetry.enabled": true, | |
"editor.linkedEditing": true, | |
} |
This file contains 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
{ | |
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
// Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight":"gutter", | |
// Configura tamanho e família da fonte | |
"editor.fontFamily":"Fira Code", | |
"editor.fontLigatures":true, | |
// Define o tema dos ícones na sidebar | |
"workbench.iconTheme": "material-icon-theme", | |
"terminal.integrated.fontSize": 16, | |
"editor.tabSize": 2, | |
"editor.fontSize": 18, | |
"editor.lineHeight": 26, | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.forceDownload": false, | |
"sync.forceUpload": true, | |
"sync.quietSync": false, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe", | |
"workbench.colorTheme": "Darcula", | |
"editor.suggestSelection": "first", | |
"workbench.editor.showTabs": false, | |
"workbench.action.toggleTabsVisibility": true, | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.autoSave": "onFocusChange", | |
"cSpell.language": "en,pt,pt_BR", | |
"remote.containers.defaultExtensions": [ | |
"alefragnani.bookmarks", | |
"bungcip.better-toml", | |
"christian-kohler.path-intellisense", | |
"dbaeumer.vscode-eslint", | |
"donjayamanne.githistory", | |
"esbenp.prettier-vscode", | |
"firsttris.vscode-jest-runner", | |
"hazer.reactcodesnippets", | |
"humao.rest-client", | |
"johnpapa.vscode-peacock", | |
"mikestead.dotenv", | |
"ms-azuretools.vscode-docker", | |
"naumovs.color-highlight", | |
"oderwat.indent-rainbow", | |
"shan.code-settings-sync", | |
"sonarsource.sonarlint-vscode", | |
"steoates.autoimport", | |
"streetsidesoftware.code-spell-checker", | |
"streetsidesoftware.code-spell-checker-portuguese-brazilian", | |
"visualstudioexptteam.vscodeintellicode", | |
"wwm.better-align", | |
"wix.vscode-import-cost", | |
"xyz.local-history", | |
"zignd.html-css-class-completion" | |
], | |
"docker.containers.sortBy": "CreatedTime", | |
"docker.containers.description": ["ContainerName", "Status"], | |
"php.suggest.basic": false, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"cSpell.userWords": [ | |
"absolutify", | |
"adminsdk", | |
"assetic", | |
"Authenticatable", | |
"chmod", | |
"CHOKIDAR", | |
"Chown", | |
"ciphertext", | |
"cloudbuild", | |
"CLOUDSDK", | |
"clsx", | |
"codeeducation", | |
"codeflix", | |
"codeplatform", | |
"CODIGO", | |
"datasource", | |
"dbdata", | |
"DBNAME", | |
"devexpress", | |
"dockerize", | |
"dotenv", | |
"dpage", | |
"elasticapm", | |
"elasticdata", | |
"entrypoint", | |
"expl", | |
"Grpc", | |
"gserviceaccount", | |
"hookform", | |
"icomoon", | |
"iconmoon", | |
"IUGU", | |
"jboss", | |
"josepy", | |
"Keycloak", | |
"kibana", | |
"kubectl", | |
"LANCAMENTO", | |
"laravel", | |
"linkedin", | |
"mailgun", | |
"mailtrap", | |
"markdownx", | |
"Microservice", | |
"microservices", | |
"MUNICIPIO", | |
"nestjs", | |
"newapp", | |
"newson", | |
"Nfse", | |
"nopassword", | |
"notistack", | |
"oidc", | |
"Omie", | |
"originalname", | |
"PAGARME", | |
"PAPERTRAIL", | |
"persistor", | |
"PGADMIN", | |
"pgsql", | |
"phar", | |
"Phpunit", | |
"POSTGRES", | |
"postgresql", | |
"prebuild", | |
"pytz", | |
"rabbitmq", | |
"reduxsauce", | |
"SASL", | |
"schoolofnet", | |
"scrollbar", | |
"sensio", | |
"smtp", | |
"sonassets", | |
"SONBOT", | |
"sonplatform", | |
"sortedm", | |
"Spotify", | |
"stylesheets", | |
"typeorm", | |
"Unprocessable", | |
"Unstyled", | |
"USEPOLLING", | |
"uuidv", | |
"varchar", | |
"VERCEL", | |
"websockets", | |
"XDEBUG" | |
], | |
"terminal.integrated.copyOnSelection": true, | |
"auto-close-tag.disableOnLanguage": [ | |
"[typescript]"], | |
"cloudcode.gke": { | |
"projectIds": ["vscode-test-285612"] | |
}, | |
"vs-kubernetes": { | |
"vs-kubernetes.helm-path.linux": "/home/argen/.vs-kubernetes/tools/helm/linux-amd64/helm", | |
"vs-kubernetes.draft-path.linux": "/home/argen/.vs-kubernetes/tools/draft/linux-amd64/draft", | |
"vs-kubernetes.minikube-path.linux": "/home/argen/.vs-kubernetes/tools/minikube/linux-amd64/minikube", | |
"vscode-kubernetes.minikube-path.linux": "/home/argen/.vs-kubernetes/tools/minikube/linux-amd64/minikube", | |
"vscode-kubernetes.helm-path.linux": "/home/argen/.vs-kubernetes/tools/helm/linux-amd64/helm" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"files.exclude": { | |
"**/__pycache__": true, | |
"**/.history": true, | |
"**/*.pyc": true | |
}, | |
"git.autofetch": true, | |
"terminal.external.windowsExec": "C:\\Program Files\\Git\\git-bash.exe", | |
"terminal.integrated.automationShell.windows": "C:\\Program Files\\Git\\git-bash.exe", | |
"sshfs.configs": [ | |
{ | |
"name": "unnamed" | |
} | |
], | |
"remote.SSH.showLoginTerminal": true, | |
"remote.SSH.path": "C:\\Program Files\\Git\\usr\\bin\\ssh.exe", | |
"peacock.favoriteColors": [ | |
{ | |
"name": "Angular", | |
"value": "#a6120d" | |
}, | |
{ | |
"name": "Angular Red", | |
"value": "#dd0531" | |
}, | |
{ | |
"name": "Apache Kafka", | |
"value": "#000000" | |
}, | |
{ | |
"name": "Azure Blue", | |
"value": "#007fff" | |
}, | |
{ | |
"name": "Django", | |
"value": "#0C4B33" | |
}, | |
{ | |
"name": "Golang", | |
"value": "#007d9c" | |
}, | |
{ | |
"name": "JavaScript Yellow", | |
"value": "#f9e64f" | |
}, | |
{ | |
"name": "Keycloak", | |
"value": "#39a5dc" | |
}, | |
{ | |
"name": "Laravel", | |
"value": "#fb503b" | |
}, | |
{ | |
"name": "Loopback", | |
"value": "#3f5dff" | |
}, | |
{ | |
"name": "Mandalorian Blue", | |
"value": "#1857a4" | |
}, | |
{ | |
"name": "Nest.js", | |
"value": "#e0234e" | |
}, | |
{ | |
"name": "Node Green", | |
"value": "#215732" | |
}, | |
{ | |
"name": "React Blue", | |
"value": "#61dafb" | |
}, | |
{ | |
"name": "Something Different", | |
"value": "#832561" | |
}, | |
{ | |
"name": "Svelte Orange", | |
"value": "#ff3d00" | |
}, | |
{ | |
"name": "Vue Green", | |
"value": "#42b883" | |
}, | |
{ | |
"name": "RabbitMQ", | |
"value": "#f60" | |
}, | |
{ | |
"name": "TypeScript", | |
"value": "#007acc" | |
} | |
], | |
"peacock.elementAdjustments": { | |
"statusBar": "lighten", | |
"titleBar": "lighten" | |
}, | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"remote.SSH.remotePlatform": { | |
"192.168.1.53": "linux" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"peacock.darkForegroundColor": "", | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"php-cs-fixer.lastDownload": 1605347483003, | |
"editor.mouseWheelZoom": true, | |
"conventionalCommits.lineBreak": "\\n", | |
"git.suggestSmartCommit": false, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.editor.wrapTabs": true, | |
"workbench.editor.decorations.badges": true, | |
"workbench.editor.decorations.colors": true, | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"indentRainbow.colors": [ | |
"rgba(255,255,64,0.07)", | |
"rgba(127,255,127,0.07)", | |
"rgba(255,127,255,0.07)", | |
"rgba(79,236,236,0.07)" | |
], | |
"[twig]": { | |
"editor.defaultFormatter": "mblode.twig-language-2" | |
}, | |
"workbench.colorCustomizations": { | |
"gitDecoration.untrackedResourceForeground": "#ff6666", | |
"gitDecoration.modifiedResourceForeground": "#89aeff" | |
}, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"editor.inlineHints.fontFamily": "\"JetBrains Mono\", Consolas, 'Courier New', monospace", | |
// "editor.fontFamily": "\"JetBrains Mono\", Consolas, 'Courier New', monospace", | |
"[xml]": { | |
"editor.defaultFormatter": "mblode.pretty-formatter" | |
}, | |
"auto-close-tag.activationOnLanguage": [ | |
"xml", | |
"php", | |
"blade", | |
"ejs", | |
"jinja", | |
"javascript", | |
"javascriptreact", | |
"typescriptreact", | |
"plaintext", | |
"markdown", | |
"vue", | |
"liquid", | |
"erb", | |
"lang-cfml", | |
"cfml", | |
"HTML (EEx)", | |
"HTML (Eex)", | |
"plist" | |
], | |
"override-mark.style.implement": "bold", | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"hediet.vscode-drawio.local-storage": "eyIuZHJhd2lvLWNvbmZpZyI6IntcImxhbmd1YWdlXCI6XCJcIixcImN1c3RvbUZvbnRzXCI6W10sXCJsaWJyYXJpZXNcIjpcImdlbmVyYWxcIixcImN1c3RvbUxpYnJhcmllc1wiOltcIkwuc2NyYXRjaHBhZFwiXSxcInBsdWdpbnNcIjpbXSxcInJlY2VudENvbG9yc1wiOltdLFwiZm9ybWF0V2lkdGhcIjowLFwiY3JlYXRlVGFyZ2V0XCI6ZmFsc2UsXCJwYWdlRm9ybWF0XCI6e1wieFwiOjAsXCJ5XCI6MCxcIndpZHRoXCI6ODI3LFwiaGVpZ2h0XCI6MTE2OX0sXCJzZWFyY2hcIjp0cnVlLFwic2hvd1N0YXJ0U2NyZWVuXCI6dHJ1ZSxcImdyaWRDb2xvclwiOlwiI2QwZDBkMFwiLFwiZGFya0dyaWRDb2xvclwiOlwiIzZlNmU2ZVwiLFwiYXV0b3NhdmVcIjp0cnVlLFwicmVzaXplSW1hZ2VzXCI6bnVsbCxcIm9wZW5Db3VudGVyXCI6MCxcInZlcnNpb25cIjoxOCxcInVuaXRcIjoxLFwiaXNSdWxlck9uXCI6ZmFsc2UsXCJ1aVwiOlwiXCJ9In0=", | |
"redhat.telemetry.enabled": false, | |
"editor.inlineSuggest.enabled": true, | |
"files.watcherExclude": { | |
"**/.history": true | |
}, | |
"search.exclude": { | |
"**/.history": true | |
}, | |
"intelephense.references.exclude": [ | |
"**/vendor/**", | |
"**/.history/**" | |
], | |
"python.linting.ignorePatterns": [ | |
"**/site-packages/**/*.py", | |
".vscode/*.py", | |
"**/.history/**/*.py" | |
], | |
"python.workspaceSymbols.exclusionPatterns": [ | |
"**/site-packages/**", | |
"**/.history/**" | |
], | |
"local-history.exclude": [ | |
"**/.history/**", | |
"**/node_modules/**", | |
"**/out/**", | |
"**/Code/User/**" | |
], | |
"sourcery.token": "user_vqi2QLfINo3phwVTSZNQmcJItPvsCC528BYhhAiSC0uRB2w1BMY2aocgVG8", | |
"peacock.affectAccentBorders": true, | |
"peacock.affectTabActiveBorder": true, | |
"peacock.darkenLightenPercentage": 10, | |
"jestrunner.codeLensSelector": "**/*.{test,spec,int-spec,ispec}.{js,jsx,ts,tsx}", | |
"files.associations": { | |
".env.*.example": "dotenv", | |
}, | |
"material-icon-theme.files.associations": { | |
".env.local.example": "tune", | |
".env.dev.example": "tune", | |
".env.ci.example": "tune", | |
".env.prod.example": "tune", | |
".env.production.example": "tune", | |
".env.testing.example": "tune", | |
".env.example": "tune", | |
".env.dusk.testing": "tune", | |
"*.int-spec.ts": "test-ts", | |
"*.ispec.ts": "test-ts", | |
}, | |
"vsicons.associations.files": [ | |
{ "icon": "config", "extensions": [".env.local.example"], "filename": true, "format": "svg" }, | |
{ "icon": "testts", "extensions": ["int-spec.ts","ispec.ts"], "format": "svg" }, | |
], | |
"editor.bracketPairColorization.enabled": true, | |
"javascript.inlayHints.parameterNames.enabled": "all", | |
"typescript.inlayHints.parameterNames.enabled": "all", | |
"typescript.inlayHints.variableTypes.enabled": true, | |
"typescript.inlayHints.propertyDeclarationTypes.enabled": true, | |
"typescript.inlayHints.parameterTypes.enabled": true, | |
"typescript.inlayHints.functionLikeReturnTypes.enabled": true, | |
"typescript.inlayHints.enumMemberValues.enabled": true, | |
"javascript.inlayHints.propertyDeclarationTypes.enabled": true, | |
"javascript.inlayHints.variableTypes.enabled": true, | |
"javascript.inlayHints.parameterTypes.enabled": true, | |
"javascript.inlayHints.functionLikeReturnTypes.enabled": true, | |
"javascript.inlayHints.enumMemberValues.enabled": true, | |
"[handlebars]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[dockercompose]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.list.horizontalScrolling": true, | |
"workbench.quickOpen.preserveInput": true, | |
"workbench.editor.autoLockGroups": { | |
"workbench.input.interactive": true, | |
"interactive": true, | |
"imagePreview.previewEditor": true, | |
"vscode.markdown.preview.editor": true, | |
"gitlens.rebase": true, | |
"mainThreadWebview-markdown.preview": true | |
}, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.editor.scrollToSwitchTabs": true, | |
"workbench.editor.showTabs": true, | |
"workbench.editor.enablePreview": false, | |
"vsicons.dontShowNewVersionMessage": true, | |
"settingsSync.ignoredExtensions": [ | |
"tabnine.tabnine-vscode", | |
"dbaeumer.vscode-eslint" | |
], | |
"sync.gist": "7bb2a91823c83fe74e01e8fb2b29576a" | |
} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git-ui\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"alefragnani.bookmarks\",\"uuid\":\"b689fcc8-d494-4dbf-a228-2c694a578afc\"},\"version\":\"11.4.0\",\"installed\":true},{\"identifier\":{\"id\":\"alexcvzz.vscode-sqlite\",\"uuid\":\"eaee103c-e866-4b73-87f8-3749cab64da2\"},\"version\":\"0.9.0\",\"installed\":true},{\"identifier\":{\"id\":\"auchenberg.vscode-browser-preview\",\"uuid\":\"126e4983-78cb-433f-a67c-9b07c39c7802\"},\"version\":\"0.6.7\",\"installed\":true},{\"identifier\":{\"id\":\"beaugunderson.solidity-extended\",\"uuid\":\"26d0f402-9931-47a4-aa16-5a884be076d2\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"coenraads.bracket-pair-colorizer-2\",\"uuid\":\"5a6e2b21-1d61-4acd-b31b-907f9c23f18a\"},\"version\":\"0.2.0\",\"installed\":true},{\"identifier\":{\"id\":\"cssho.vscode-svgviewer\",\"uuid\":\"6f5d4f30-67aa-4151-80c0-1bbe8ca5f9db\"},\"version\":\"2.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"dbaeumer.vscode-eslint\",\"uuid\":\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\"},\"version\":\"2.1.13\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"dracula-theme.theme-dracula\",\"uuid\":\"4e44877c-1c8d-4f9c-ba86-1372d0fbeeb1\"},\"version\":\"2.22.1\",\"installed\":true},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"version\":\"11.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"equinusocio.vsc-community-material-theme\",\"uuid\":\"484d897a-6711-403c-ab54-a96f12be5833\"},\"version\":\"1.4.2\",\"installed\":true},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"version\":\"5.7.2\",\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.code-runner\",\"uuid\":\"a6a0c5b2-d078-4bf5-a9ee-4e37054414b3\"},\"version\":\"0.11.1\",\"installed\":true},{\"identifier\":{\"id\":\"hoovercj.vscode-power-mode\",\"uuid\":\"a27ff63d-ff11-478d-b1ab-19aa1ef19882\"},\"version\":\"2.2.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"jcbuisson.vue\",\"uuid\":\"4c808376-20ec-41d4-a934-f7601552c4f1\"},\"version\":\"0.1.5\",\"installed\":true},{\"identifier\":{\"id\":\"juanblanco.solidity\",\"uuid\":\"25baab03-fe9a-40c7-b683-55c9a0a92480\"},\"version\":\"0.0.76\",\"installed\":true},{\"identifier\":{\"id\":\"justinwash.cmderrunner\",\"uuid\":\"5c18959c-1baf-47c4-8ad4-92eac987f264\"},\"version\":\"0.1.2\",\"installed\":true},{\"identifier\":{\"id\":\"kenhowardpdx.vscode-gist\",\"uuid\":\"c3382f5b-0525-4f74-93df-3a82483c1ad8\"},\"version\":\"3.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"mikestead.dotenv\",\"uuid\":\"532533c9-a894-4a58-9eee-bbfbe7c06f71\"},\"version\":\"1.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"mrmlnc.vscode-duplicate\",\"uuid\":\"03944bdc-9bcb-4ac2-b9b3-fdb050dd43e4\"},\"version\":\"1.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"version\":\"1.7.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"version\":\"0.148.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh\",\"uuid\":\"607fd052-be03-4363-b657-2bd62b83d28a\"},\"version\":\"0.56.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit\",\"uuid\":\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\"},\"version\":\"0.56.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"version\":\"0.51.3\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.vscode-remote-extensionpack\",\"uuid\":\"23d72dfc-8dd1-4e30-926e-8783b4378f13\"},\"version\":\"0.20.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.51.0\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.8\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.14\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.5\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.71\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.11\"},{\"identifier\":{\"id\":\"ms-vsliveshare.vsliveshare\",\"uuid\":\"5a6dc0d5-dc02-4121-8e24-cad33a2ff0af\"},\"version\":\"1.0.3121\",\"installed\":true},{\"identifier\":{\"id\":\"msjsdiag.debugger-for-chrome\",\"uuid\":\"1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd\"},\"version\":\"4.12.11\",\"installed\":true},{\"identifier\":{\"id\":\"naumovs.color-highlight\",\"uuid\":\"121396ad-85a1-45ec-9fd1-d95028a847f5\"},\"version\":\"2.3.0\",\"installed\":true},{\"identifier\":{\"id\":\"octref.vetur\",\"uuid\":\"2f5dd8cb-d251-4d70-abfe-ddebcb077483\"},\"version\":\"0.30.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"version\":\"4.4.0\",\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.live-sass\",\"uuid\":\"ad94b437-b5a7-4249-bf5f-df472ae0d084\"},\"version\":\"3.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"b63c44fd-0457-4696-99e9-dbfdf70d77de\"},\"version\":\"5.6.1\",\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactjs\",\"uuid\":\"e8e6c9a6-cbd0-4812-b617-50ab45b749e4\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactnative\",\"uuid\":\"00b0e9ab-d798-487b-a542-8304240d0da4\"},\"version\":\"3.0.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rvest.vs-code-prettier-eslint\",\"uuid\":\"d4b06bd6-36a0-469f-be55-c0a73413b688\"},\"version\":\"0.3.2\",\"installed\":true},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"installed\":true},{\"identifier\":{\"id\":\"steoates.autoimport\",\"uuid\":\"70378119-1d85-4935-9733-0298c7a369a2\"},\"version\":\"1.5.3\",\"installed\":true},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"version\":\"1.2.10\",\"installed\":true},{\"identifier\":{\"id\":\"zhuangtongfa.material-theme\",\"uuid\":\"26a529c9-2654-4b95-a63f-02f6a52429e6\"},\"version\":\"3.9.6\",\"installed\":true}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git-ui\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"alefragnani.bookmarks\",\"uuid\":\"b689fcc8-d494-4dbf-a228-2c694a578afc\"},\"version\":\"11.4.0\",\"installed\":true},{\"identifier\":{\"id\":\"alexcvzz.vscode-sqlite\",\"uuid\":\"eaee103c-e866-4b73-87f8-3749cab64da2\"},\"version\":\"0.10.0\",\"installed\":true},{\"identifier\":{\"id\":\"auchenberg.vscode-browser-preview\",\"uuid\":\"126e4983-78cb-433f-a67c-9b07c39c7802\"},\"version\":\"0.6.7\",\"installed\":true},{\"identifier\":{\"id\":\"beaugunderson.solidity-extended\",\"uuid\":\"26d0f402-9931-47a4-aa16-5a884be076d2\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"coenraads.bracket-pair-colorizer-2\",\"uuid\":\"5a6e2b21-1d61-4acd-b31b-907f9c23f18a\"},\"version\":\"0.2.0\",\"installed\":true},{\"identifier\":{\"id\":\"cssho.vscode-svgviewer\",\"uuid\":\"6f5d4f30-67aa-4151-80c0-1bbe8ca5f9db\"},\"version\":\"2.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"dbaeumer.vscode-eslint\",\"uuid\":\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\"},\"version\":\"2.1.13\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"dracula-theme.theme-dracula\",\"uuid\":\"4e44877c-1c8d-4f9c-ba86-1372d0fbeeb1\"},\"version\":\"2.22.2\",\"installed\":true},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"version\":\"11.0.2\",\"installed\":true},{\"identifier\":{\"id\":\"equinusocio.vsc-community-material-theme\",\"uuid\":\"484d897a-6711-403c-ab54-a96f12be5833\"},\"version\":\"1.4.2\",\"installed\":true},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"version\":\"5.8.0\",\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.code-runner\",\"uuid\":\"a6a0c5b2-d078-4bf5-a9ee-4e37054414b3\"},\"version\":\"0.11.1\",\"installed\":true},{\"identifier\":{\"id\":\"hoovercj.vscode-power-mode\",\"uuid\":\"a27ff63d-ff11-478d-b1ab-19aa1ef19882\"},\"version\":\"2.2.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"jcbuisson.vue\",\"uuid\":\"4c808376-20ec-41d4-a934-f7601552c4f1\"},\"version\":\"0.1.5\",\"installed\":true},{\"identifier\":{\"id\":\"juanblanco.solidity\",\"uuid\":\"25baab03-fe9a-40c7-b683-55c9a0a92480\"},\"version\":\"0.0.76\",\"installed\":true},{\"identifier\":{\"id\":\"justinwash.cmderrunner\",\"uuid\":\"5c18959c-1baf-47c4-8ad4-92eac987f264\"},\"version\":\"0.1.2\",\"installed\":true},{\"identifier\":{\"id\":\"kenhowardpdx.vscode-gist\",\"uuid\":\"c3382f5b-0525-4f74-93df-3a82483c1ad8\"},\"version\":\"3.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"mikestead.dotenv\",\"uuid\":\"532533c9-a894-4a58-9eee-bbfbe7c06f71\"},\"version\":\"1.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"mrmlnc.vscode-duplicate\",\"uuid\":\"03944bdc-9bcb-4ac2-b9b3-fdb050dd43e4\"},\"version\":\"1.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"version\":\"1.8.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"version\":\"0.148.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh\",\"uuid\":\"607fd052-be03-4363-b657-2bd62b83d28a\"},\"version\":\"0.56.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit\",\"uuid\":\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\"},\"version\":\"0.56.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"version\":\"0.51.4\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.vscode-remote-extensionpack\",\"uuid\":\"23d72dfc-8dd1-4e30-926e-8783b4378f13\"},\"version\":\"0.20.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.51.0\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.8\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.14\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.5\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.71\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.11\"},{\"identifier\":{\"id\":\"ms-vsliveshare.vsliveshare\",\"uuid\":\"5a6dc0d5-dc02-4121-8e24-cad33a2ff0af\"},\"version\":\"1.0.3121\",\"installed\":true},{\"identifier\":{\"id\":\"msjsdiag.debugger-for-chrome\",\"uuid\":\"1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd\"},\"version\":\"4.12.11\",\"installed\":true},{\"identifier\":{\"id\":\"naumovs.color-highlight\",\"uuid\":\"121396ad-85a1-45ec-9fd1-d95028a847f5\"},\"version\":\"2.3.0\",\"installed\":true},{\"identifier\":{\"id\":\"octref.vetur\",\"uuid\":\"2f5dd8cb-d251-4d70-abfe-ddebcb077483\"},\"version\":\"0.30.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"version\":\"4.4.0\",\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.live-sass\",\"uuid\":\"ad94b437-b5a7-4249-bf5f-df472ae0d084\"},\"version\":\"3.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"b63c44fd-0457-4696-99e9-dbfdf70d77de\"},\"version\":\"5.6.1\",\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactjs\",\"uuid\":\"e8e6c9a6-cbd0-4812-b617-50ab45b749e4\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactnative\",\"uuid\":\"00b0e9ab-d798-487b-a542-8304240d0da4\"},\"version\":\"3.0.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rvest.vs-code-prettier-eslint\",\"uuid\":\"d4b06bd6-36a0-469f-be55-c0a73413b688\"},\"version\":\"0.3.2\",\"installed\":true},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"installed\":true},{\"identifier\":{\"id\":\"steoates.autoimport\",\"uuid\":\"70378119-1d85-4935-9733-0298c7a369a2\"},\"version\":\"1.5.3\",\"installed\":true},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"version\":\"1.2.10\",\"installed\":true},{\"identifier\":{\"id\":\"zhuangtongfa.material-theme\",\"uuid\":\"26a529c9-2654-4b95-a63f-02f6a52429e6\"},\"version\":\"3.9.7\",\"installed\":true}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.notebook-markdown-extensions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.testing-editor-contributions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.10\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.57.0\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.13\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.28\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.7\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.80\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.notebook-markdown-extensions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.testing-editor-contributions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.10\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.57.0\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.13\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.28\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.7\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.80\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-math\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.testing-editor-contributions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"alefragnani.bookmarks\",\"uuid\":\"b689fcc8-d494-4dbf-a228-2c694a578afc\"},\"version\":\"13.1.0\",\"installed\":true,\"state\":{\"Bookmarks.version\":\"13.1.0\"}},{\"identifier\":{\"id\":\"alexcvzz.vscode-sqlite\",\"uuid\":\"eaee103c-e866-4b73-87f8-3749cab64da2\"},\"version\":\"0.13.0\",\"installed\":true},{\"identifier\":{\"id\":\"auchenberg.vscode-browser-preview\",\"uuid\":\"126e4983-78cb-433f-a67c-9b07c39c7802\"},\"version\":\"0.7.1\",\"installed\":true},{\"identifier\":{\"id\":\"beaugunderson.solidity-extended\",\"uuid\":\"26d0f402-9931-47a4-aa16-5a884be076d2\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"coenraads.bracket-pair-colorizer-2\",\"uuid\":\"5a6e2b21-1d61-4acd-b31b-907f9c23f18a\"},\"version\":\"0.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"cssho.vscode-svgviewer\",\"uuid\":\"6f5d4f30-67aa-4151-80c0-1bbe8ca5f9db\"},\"version\":\"2.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"dbaeumer.vscode-eslint\",\"uuid\":\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\"},\"version\":\"2.1.23\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"dracula-theme.theme-dracula\",\"uuid\":\"4e44877c-1c8d-4f9c-ba86-1372d0fbeeb1\"},\"version\":\"2.22.4\",\"installed\":true},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"version\":\"11.5.1\",\"installed\":true,\"state\":{\"gitlens:synced:version\":\"11.5.1\",\"gitlens:views:updates:visible\":true}},{\"identifier\":{\"id\":\"equinusocio.vsc-community-material-theme\",\"uuid\":\"bf8aa94a-4051-42fe-9bd1-2becad466fe7\"},\"version\":\"1.4.4\",\"installed\":true},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"version\":\"8.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.code-runner\",\"uuid\":\"a6a0c5b2-d078-4bf5-a9ee-4e37054414b3\"},\"version\":\"0.11.4\",\"installed\":true},{\"identifier\":{\"id\":\"hoovercj.vscode-power-mode\",\"uuid\":\"a27ff63d-ff11-478d-b1ab-19aa1ef19882\"},\"version\":\"2.2.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"jcbuisson.vue\",\"uuid\":\"4c808376-20ec-41d4-a934-f7601552c4f1\"},\"version\":\"0.1.5\",\"installed\":true},{\"identifier\":{\"id\":\"juanblanco.solidity\",\"uuid\":\"25baab03-fe9a-40c7-b683-55c9a0a92480\"},\"version\":\"0.0.124\",\"installed\":true},{\"identifier\":{\"id\":\"justinwash.cmderrunner\",\"uuid\":\"5c18959c-1baf-47c4-8ad4-92eac987f264\"},\"version\":\"0.1.2\",\"installed\":true},{\"identifier\":{\"id\":\"kenhowardpdx.vscode-gist\",\"uuid\":\"c3382f5b-0525-4f74-93df-3a82483c1ad8\"},\"version\":\"3.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"mikestead.dotenv\",\"uuid\":\"532533c9-a894-4a58-9eee-bbfbe7c06f71\"},\"version\":\"1.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"mrmlnc.vscode-duplicate\",\"uuid\":\"03944bdc-9bcb-4ac2-b9b3-fdb050dd43e4\"},\"version\":\"1.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"version\":\"1.14.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"version\":\"0.187.0\",\"installed\":true,\"state\":{}},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh\",\"uuid\":\"607fd052-be03-4363-b657-2bd62b83d28a\"},\"version\":\"0.65.7\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit\",\"uuid\":\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\"},\"version\":\"0.65.7\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"version\":\"0.58.2\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.11\"},{\"identifier\":{\"id\":\"ms-vscode-remote.vscode-remote-extensionpack\",\"uuid\":\"23d72dfc-8dd1-4e30-926e-8783b4378f13\"},\"version\":\"0.21.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.58.2\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.13\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.28\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.7\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.80\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"},{\"identifier\":{\"id\":\"ms-vsliveshare.vsliveshare\",\"uuid\":\"5a6dc0d5-dc02-4121-8e24-cad33a2ff0af\"},\"version\":\"1.0.4531\",\"installed\":true},{\"identifier\":{\"id\":\"msjsdiag.debugger-for-chrome\",\"uuid\":\"1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd\"},\"version\":\"4.12.12\",\"installed\":true},{\"identifier\":{\"id\":\"naumovs.color-highlight\",\"uuid\":\"121396ad-85a1-45ec-9fd1-d95028a847f5\"},\"version\":\"2.3.0\",\"installed\":true},{\"identifier\":{\"id\":\"octref.vetur\",\"uuid\":\"2f5dd8cb-d251-4d70-abfe-ddebcb077483\"},\"version\":\"0.34.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"version\":\"4.8.0\",\"installed\":true,\"state\":{\"material-icon-theme.version\":\"4.8.0\"}},{\"identifier\":{\"id\":\"ritwickdey.live-sass\",\"uuid\":\"ad94b437-b5a7-4249-bf5f-df472ae0d084\"},\"version\":\"3.0.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"b63c44fd-0457-4696-99e9-dbfdf70d77de\"},\"version\":\"5.6.1\",\"installed\":true,\"state\":{\"liveServer.setup.version\":\"5.6.1\"}},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactjs\",\"uuid\":\"e8e6c9a6-cbd0-4812-b617-50ab45b749e4\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactnative\",\"uuid\":\"00b0e9ab-d798-487b-a542-8304240d0da4\"},\"version\":\"3.0.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rvest.vs-code-prettier-eslint\",\"uuid\":\"d4b06bd6-36a0-469f-be55-c0a73413b688\"},\"version\":\"3.0.4\",\"installed\":true},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"installed\":true},{\"identifier\":{\"id\":\"steoates.autoimport\",\"uuid\":\"70378119-1d85-4935-9733-0298c7a369a2\"},\"version\":\"1.5.4\",\"installed\":true},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"version\":\"1.2.14\",\"installed\":true},{\"identifier\":{\"id\":\"zhuangtongfa.material-theme\",\"uuid\":\"26a529c9-2654-4b95-a63f-02f6a52429e6\"},\"version\":\"3.10.14\",\"installed\":true}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-math\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.testing-editor-contributions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.11\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.58.2\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.13\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.28\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.7\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.80\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-math\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.testing-editor-contributions\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"alefragnani.bookmarks\",\"uuid\":\"b689fcc8-d494-4dbf-a228-2c694a578afc\"},\"version\":\"13.1.0\",\"installed\":true,\"state\":{\"Bookmarks.version\":\"13.1.0\"}},{\"identifier\":{\"id\":\"alexcvzz.vscode-sqlite\",\"uuid\":\"eaee103c-e866-4b73-87f8-3749cab64da2\"},\"version\":\"0.13.0\",\"installed\":true},{\"identifier\":{\"id\":\"auchenberg.vscode-browser-preview\",\"uuid\":\"126e4983-78cb-433f-a67c-9b07c39c7802\"},\"version\":\"0.7.1\",\"installed\":true},{\"identifier\":{\"id\":\"beaugunderson.solidity-extended\",\"uuid\":\"26d0f402-9931-47a4-aa16-5a884be076d2\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"coenraads.bracket-pair-colorizer-2\",\"uuid\":\"5a6e2b21-1d61-4acd-b31b-907f9c23f18a\"},\"version\":\"0.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"cssho.vscode-svgviewer\",\"uuid\":\"6f5d4f30-67aa-4151-80c0-1bbe8ca5f9db\"},\"version\":\"2.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"dbaeumer.vscode-eslint\",\"uuid\":\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\"},\"version\":\"2.1.23\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"dracula-theme.theme-dracula\",\"uuid\":\"4e44877c-1c8d-4f9c-ba86-1372d0fbeeb1\"},\"version\":\"2.22.4\",\"installed\":true},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"version\":\"11.6.0\",\"installed\":true,\"state\":{\"gitlens:synced:version\":\"11.6.0\",\"gitlens:views:updates:visible\":true}},{\"identifier\":{\"id\":\"equinusocio.vsc-community-material-theme\",\"uuid\":\"bf8aa94a-4051-42fe-9bd1-2becad466fe7\"},\"version\":\"1.4.4\",\"installed\":true},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"version\":\"8.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.code-runner\",\"uuid\":\"a6a0c5b2-d078-4bf5-a9ee-4e37054414b3\"},\"version\":\"0.11.5\",\"installed\":true},{\"identifier\":{\"id\":\"hoovercj.vscode-power-mode\",\"uuid\":\"a27ff63d-ff11-478d-b1ab-19aa1ef19882\"},\"version\":\"2.2.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"jcbuisson.vue\",\"uuid\":\"4c808376-20ec-41d4-a934-f7601552c4f1\"},\"version\":\"0.1.5\",\"installed\":true},{\"identifier\":{\"id\":\"juanblanco.solidity\",\"uuid\":\"25baab03-fe9a-40c7-b683-55c9a0a92480\"},\"version\":\"0.0.124\",\"installed\":true},{\"identifier\":{\"id\":\"justinwash.cmderrunner\",\"uuid\":\"5c18959c-1baf-47c4-8ad4-92eac987f264\"},\"version\":\"0.1.2\",\"installed\":true},{\"identifier\":{\"id\":\"kenhowardpdx.vscode-gist\",\"uuid\":\"c3382f5b-0525-4f74-93df-3a82483c1ad8\"},\"version\":\"3.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"mikestead.dotenv\",\"uuid\":\"532533c9-a894-4a58-9eee-bbfbe7c06f71\"},\"version\":\"1.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"mrmlnc.vscode-duplicate\",\"uuid\":\"03944bdc-9bcb-4ac2-b9b3-fdb050dd43e4\"},\"version\":\"1.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"version\":\"1.15.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"version\":\"0.187.1\",\"installed\":true,\"state\":{}},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh\",\"uuid\":\"607fd052-be03-4363-b657-2bd62b83d28a\"},\"version\":\"0.65.7\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit\",\"uuid\":\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\"},\"version\":\"0.65.7\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"version\":\"0.58.2\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.11\"},{\"identifier\":{\"id\":\"ms-vscode-remote.vscode-remote-extensionpack\",\"uuid\":\"23d72dfc-8dd1-4e30-926e-8783b4378f13\"},\"version\":\"0.21.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.58.2\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.13\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug\",\"uuid\":\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\"},\"version\":\"1.44.28\"},{\"identifier\":{\"id\":\"ms-vscode.node-debug2\",\"uuid\":\"36d19e17-7569-4841-a001-947eb18602b2\"},\"version\":\"1.42.7\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.80\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"},{\"identifier\":{\"id\":\"ms-vsliveshare.vsliveshare\",\"uuid\":\"5a6dc0d5-dc02-4121-8e24-cad33a2ff0af\"},\"version\":\"1.0.4583\",\"installed\":true},{\"identifier\":{\"id\":\"msjsdiag.debugger-for-chrome\",\"uuid\":\"1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd\"},\"version\":\"4.12.12\",\"installed\":true},{\"identifier\":{\"id\":\"naumovs.color-highlight\",\"uuid\":\"121396ad-85a1-45ec-9fd1-d95028a847f5\"},\"version\":\"2.4.0\",\"installed\":true},{\"identifier\":{\"id\":\"octref.vetur\",\"uuid\":\"2f5dd8cb-d251-4d70-abfe-ddebcb077483\"},\"version\":\"0.34.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"version\":\"4.8.0\",\"installed\":true,\"state\":{\"material-icon-theme.version\":\"4.8.0\"}},{\"identifier\":{\"id\":\"ritwickdey.live-sass\",\"uuid\":\"ad94b437-b5a7-4249-bf5f-df472ae0d084\"},\"version\":\"3.0.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"b63c44fd-0457-4696-99e9-dbfdf70d77de\"},\"version\":\"5.6.1\",\"installed\":true,\"state\":{\"liveServer.setup.version\":\"5.6.1\"}},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactjs\",\"uuid\":\"e8e6c9a6-cbd0-4812-b617-50ab45b749e4\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactnative\",\"uuid\":\"00b0e9ab-d798-487b-a542-8304240d0da4\"},\"version\":\"3.0.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rvest.vs-code-prettier-eslint\",\"uuid\":\"d4b06bd6-36a0-469f-be55-c0a73413b688\"},\"version\":\"3.0.4\",\"installed\":true},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"installed\":true},{\"identifier\":{\"id\":\"steoates.autoimport\",\"uuid\":\"70378119-1d85-4935-9733-0298c7a369a2\"},\"version\":\"1.5.4\",\"installed\":true},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"version\":\"1.2.14\",\"installed\":true},{\"identifier\":{\"id\":\"zhuangtongfa.material-theme\",\"uuid\":\"26a529c9-2654-4b95-a63f-02f6a52429e6\"},\"version\":\"3.11.1\",\"installed\":true}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ipynb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-math\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\",\"disabled\":true},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"aaron-bond.better-comments\",\"uuid\":\"7a0110bb-231a-4598-aa1b-0769ea46d28b\"},\"version\":\"2.1.0\",\"installed\":true},{\"identifier\":{\"id\":\"abusaidm.html-snippets\",\"uuid\":\"be992f3f-9f22-4b66-a1d2-ecad04c28a28\"},\"version\":\"0.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"alefragnani.bookmarks\",\"uuid\":\"b689fcc8-d494-4dbf-a228-2c694a578afc\"},\"version\":\"13.2.2\",\"installed\":true,\"state\":{\"Bookmarks.version\":\"13.2.0\"}},{\"identifier\":{\"id\":\"alexcvzz.vscode-sqlite\",\"uuid\":\"eaee103c-e866-4b73-87f8-3749cab64da2\"},\"version\":\"0.14.0\",\"installed\":true},{\"identifier\":{\"id\":\"almenon.arepl\",\"uuid\":\"88eb8072-5ab1-457b-9835-6d92196388a3\"},\"version\":\"2.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"auchenberg.vscode-browser-preview\",\"uuid\":\"126e4983-78cb-433f-a67c-9b07c39c7802\"},\"version\":\"0.7.2\",\"installed\":true},{\"identifier\":{\"id\":\"beaugunderson.solidity-extended\",\"uuid\":\"26d0f402-9931-47a4-aa16-5a884be076d2\"},\"version\":\"3.0.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"bierner.markdown-preview-github-styles\",\"uuid\":\"5cbdf58a-694a-4aba-af08-61d00842eb03\"},\"version\":\"0.2.0\",\"installed\":true},{\"identifier\":{\"id\":\"bradlc.vscode-tailwindcss\",\"uuid\":\"4db62a7c-7d70-419c-96d2-6c3a4dc77ea5\"},\"version\":\"0.7.2\",\"installed\":true},{\"identifier\":{\"id\":\"coenraads.bracket-pair-colorizer-2\",\"uuid\":\"5a6e2b21-1d61-4acd-b31b-907f9c23f18a\"},\"version\":\"0.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"cssho.vscode-svgviewer\",\"uuid\":\"6f5d4f30-67aa-4151-80c0-1bbe8ca5f9db\"},\"version\":\"2.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"cweijan.vscode-database-client2\",\"uuid\":\"6ba92c55-a4a0-43f8-8aeb-cc3a03558814\"},\"version\":\"4.2.0\",\"installed\":true},{\"identifier\":{\"id\":\"dbaeumer.vscode-eslint\",\"uuid\":\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\"},\"version\":\"2.2.2\",\"installed\":true},{\"identifier\":{\"id\":\"dongli.python-preview\",\"uuid\":\"70e24b61-872b-47e6-b2a6-e5fc2cf3f4e9\"},\"version\":\"0.0.4\",\"installed\":true},{\"identifier\":{\"id\":\"donjayamanne.githistory\",\"uuid\":\"5960f38e-0bbe-4644-8f9c-9c8824e82511\"},\"version\":\"0.6.19\",\"installed\":true},{\"identifier\":{\"id\":\"dougdoan.theme-argonaut\",\"uuid\":\"b0ef4ccf-969a-4037-8ef5-e2189091dd85\"},\"version\":\"0.1.2\",\"installed\":true},{\"identifier\":{\"id\":\"dracula-theme.theme-dracula\",\"uuid\":\"4e44877c-1c8d-4f9c-ba86-1372d0fbeeb1\"},\"version\":\"2.24.0\",\"installed\":true},{\"identifier\":{\"id\":\"dsznajder.es7-react-js-snippets\",\"uuid\":\"19804510-b475-4dae-b0f7-6ca08fd1af0c\"},\"version\":\"3.1.1\",\"installed\":true},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"version\":\"11.6.1\",\"installed\":true,\"state\":{\"gitlens:synced:version\":\"11.6.1\"}},{\"identifier\":{\"id\":\"ecmel.vscode-html-css\",\"uuid\":\"aaee577c-f062-495a-9816-0cbd442f1d25\"},\"version\":\"1.10.2\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"editorconfig.editorconfig\",\"uuid\":\"f60a60a6-95ba-42d4-b41c-3d24c1b89588\"},\"version\":\"0.16.4\",\"installed\":true},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"version\":\"9.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.auto-close-tag\",\"uuid\":\"d3836729-9cc1-42c1-b2af-d50071f57d29\"},\"version\":\"0.5.13\",\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.code-runner\",\"uuid\":\"a6a0c5b2-d078-4bf5-a9ee-4e37054414b3\"},\"version\":\"0.11.6\",\"installed\":true},{\"identifier\":{\"id\":\"github.copilot\",\"uuid\":\"23c4aeee-f844-43cd-b53e-1113e483f1a6\"},\"version\":\"1.7.3822\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"hoovercj.vscode-power-mode\",\"uuid\":\"a27ff63d-ff11-478d-b1ab-19aa1ef19882\"},\"version\":\"2.2.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"jcbuisson.vue\",\"uuid\":\"4c808376-20ec-41d4-a934-f7601552c4f1\"},\"version\":\"0.1.5\",\"installed\":true},{\"identifier\":{\"id\":\"jpoissonnier.vscode-styled-components\",\"uuid\":\"06cc3e44-aedb-41b8-a4ea-29ebf3c491fd\"},\"version\":\"1.6.6\",\"installed\":true},{\"identifier\":{\"id\":\"juanblanco.solidity\",\"uuid\":\"25baab03-fe9a-40c7-b683-55c9a0a92480\"},\"version\":\"0.0.136\",\"installed\":true},{\"identifier\":{\"id\":\"kenhowardpdx.vscode-gist\",\"uuid\":\"c3382f5b-0525-4f74-93df-3a82483c1ad8\"},\"version\":\"3.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"kiteco.kite\",\"uuid\":\"d697a7e8-00fa-4039-9067-4b69a9a90f6e\"},\"version\":\"0.147.0\",\"disabled\":true,\"installed\":true,\"state\":{\"kite.hasShownInstallPausedNotification\":true}},{\"identifier\":{\"id\":\"mikestead.dotenv\",\"uuid\":\"532533c9-a894-4a58-9eee-bbfbe7c06f71\"},\"version\":\"1.0.1\",\"installed\":true},{\"identifier\":{\"id\":\"mrmlnc.vscode-duplicate\",\"uuid\":\"03944bdc-9bcb-4ac2-b9b3-fdb050dd43e4\"},\"version\":\"1.2.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"version\":\"1.18.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-ceintl.vscode-language-pack-pt-br\",\"uuid\":\"3fd25437-acd9-42d7-ab19-581a69ce2dd9\"},\"version\":\"1.62.3\",\"installed\":true},{\"identifier\":{\"id\":\"ms-python.python\",\"uuid\":\"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5\"},\"version\":\"2021.11.1422169775\",\"installed\":true},{\"identifier\":{\"id\":\"ms-python.vscode-pylance\",\"uuid\":\"364d2426-116a-433a-a5d8-a5098dc3afbd\"},\"version\":\"2021.11.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-toolsai.jupyter\",\"uuid\":\"6c2f1801-1e7f-45b2-9b5c-7782f1e076e8\"},\"version\":\"2021.10.1101450599\",\"installed\":true},{\"identifier\":{\"id\":\"ms-toolsai.jupyter-keymap\",\"uuid\":\"9f6dc8db-620c-4844-b8c5-e74914f1be27\"},\"version\":\"1.0.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-toolsai.jupyter-renderers\",\"uuid\":\"b15c72f8-d5fe-421a-a4f7-27ed9f6addbf\"},\"version\":\"1.0.3\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"version\":\"0.205.2\",\"installed\":true,\"state\":{}},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh\",\"uuid\":\"607fd052-be03-4363-b657-2bd62b83d28a\"},\"version\":\"0.66.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit\",\"uuid\":\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\"},\"version\":\"0.66.1\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"version\":\"0.58.5\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.12\"},{\"identifier\":{\"id\":\"ms-vscode-remote.vscode-remote-extensionpack\",\"uuid\":\"23d72dfc-8dd1-4e30-926e-8783b4378f13\"},\"version\":\"0.21.0\",\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.62.0\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.15\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.81\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-typescript-next\",\"uuid\":\"15305aca-2588-4ca0-8147-ab2c64730b82\"},\"version\":\"4.6.20211115\",\"installed\":true},{\"identifier\":{\"id\":\"msjsdiag.debugger-for-chrome\",\"uuid\":\"1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd\"},\"version\":\"4.13.0\",\"installed\":true},{\"identifier\":{\"id\":\"naumovs.color-highlight\",\"uuid\":\"121396ad-85a1-45ec-9fd1-d95028a847f5\"},\"version\":\"2.5.0\",\"installed\":true},{\"identifier\":{\"id\":\"octref.vetur\",\"uuid\":\"2f5dd8cb-d251-4d70-abfe-ddebcb077483\"},\"version\":\"0.35.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"oderwat.indent-rainbow\",\"uuid\":\"eaa2127d-cb69-4ab9-8505-a60c9ee5f28b\"},\"version\":\"8.2.2\",\"installed\":true},{\"identifier\":{\"id\":\"paulzhang.fastify-snippets\",\"uuid\":\"06fc37a4-e524-4d7d-af9f-16808dcb37f7\"},\"version\":\"0.0.5\",\"installed\":true},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"version\":\"4.10.0\",\"installed\":true,\"state\":{\"material-icon-theme.version\":\"4.10.0\"}},{\"identifier\":{\"id\":\"ritwickdey.live-sass\",\"uuid\":\"ad94b437-b5a7-4249-bf5f-df472ae0d084\"},\"version\":\"3.0.0\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"b63c44fd-0457-4696-99e9-dbfdf70d77de\"},\"version\":\"5.6.1\",\"installed\":true,\"state\":{\"liveServer.setup.version\":\"5.6.1\"}},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactjs\",\"uuid\":\"e8e6c9a6-cbd0-4812-b617-50ab45b749e4\"},\"version\":\"3.0.2\",\"installed\":true},{\"identifier\":{\"id\":\"rocketseat.rocketseatreactnative\",\"uuid\":\"00b0e9ab-d798-487b-a542-8304240d0da4\"},\"version\":\"3.0.1\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"rvest.vs-code-prettier-eslint\",\"uuid\":\"d4b06bd6-36a0-469f-be55-c0a73413b688\"},\"version\":\"3.0.4\",\"installed\":true},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"steoates.autoimport\",\"uuid\":\"70378119-1d85-4935-9733-0298c7a369a2\"},\"version\":\"1.5.4\",\"disabled\":true,\"installed\":true},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"version\":\"1.2.14\",\"installed\":true},{\"identifier\":{\"id\":\"zhuangtongfa.material-theme\",\"uuid\":\"26a529c9-2654-4b95-a63f-02f6a52429e6\"},\"version\":\"3.13.2\",\"installed\":true},{\"identifier\":{\"id\":\"zignd.html-css-class-completion\",\"uuid\":\"7b71fc1b-190d-4f7d-95d1-93e422649b0a\"},\"version\":\"1.20.0\",\"installed\":true}]"} |
This file contains 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
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.diff\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.git-base\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.ipynb\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.markdown-math\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"alefragnani.bookmarks\",\"uuid\":\"b689fcc8-d494-4dbf-a228-2c694a578afc\"},\"version\":\"13.2.2\",\"preRelease\":false,\"installed\":true,\"state\":{\"Bookmarks.version\":\"13.2.2\"}},{\"identifier\":{\"id\":\"csstools.postcss\",\"uuid\":\"80def04d-6d01-495b-9d59-4ad19408872f\"},\"version\":\"1.0.9\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"dcortes92.freemarker\",\"uuid\":\"94cd620d-a2c4-4528-9f78-6facd10f45fc\"},\"version\":\"0.0.9\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"version\":\"11.7.0\",\"preRelease\":false,\"installed\":true,\"state\":{\"gitlens:synced:version\":\"11.7.0\"}},{\"identifier\":{\"id\":\"edgardmessias.override-mark\",\"uuid\":\"a0af9614-b86b-4446-b570-509284c001ea\"},\"version\":\"1.3.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"emmanuelbeziat.vscode-great-icons\",\"uuid\":\"829a192d-496c-44ac-87f3-0a84ce36a853\"},\"version\":\"2.1.79\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.auto-close-tag\",\"uuid\":\"d3836729-9cc1-42c1-b2af-d50071f57d29\"},\"version\":\"0.5.13\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"formulahendry.auto-rename-tag\",\"uuid\":\"6e440e71-8ed9-4f25-bb78-4b13096b8a03\"},\"version\":\"0.1.9\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"github.github-vscode-theme\",\"uuid\":\"7328a705-91fc-49e6-8293-da6f112e482d\"},\"version\":\"5.1.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"github.remotehub\",\"uuid\":\"fc7d7e85-2e58-4c1c-97a3-2172ed9a77cd\"},\"version\":\"0.20.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"hediet.vscode-drawio\",\"uuid\":\"ea6a6046-2132-421f-a984-664909fcf0b8\"},\"version\":\"1.6.3\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"jcbuisson.vue\",\"uuid\":\"4c808376-20ec-41d4-a934-f7601552c4f1\"},\"version\":\"0.1.5\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"johnpapa.vscode-peacock\",\"uuid\":\"5a7017bf-c571-4d77-b902-6e56b16f539a\"},\"version\":\"4.0.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"mikestead.dotenv\",\"uuid\":\"532533c9-a894-4a58-9eee-bbfbe7c06f71\"},\"version\":\"1.0.1\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"version\":\"1.18.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-ceintl.vscode-language-pack-pt-br\",\"uuid\":\"3fd25437-acd9-42d7-ab19-581a69ce2dd9\"},\"version\":\"1.63.3\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"version\":\"0.209.6\",\"preRelease\":false,\"installed\":true,\"state\":{}},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh\",\"uuid\":\"607fd052-be03-4363-b657-2bd62b83d28a\"},\"version\":\"0.70.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit\",\"uuid\":\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\"},\"version\":\"0.70.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-edit-nightly\",\"uuid\":\"476ecc1e-b7ff-4c4a-9b47-51c16b2bce34\"},\"version\":\"2021.12.12420\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-ssh-nightly\",\"uuid\":\"fa6b9598-afd0-47b4-95d2-f8b2601840f0\"},\"version\":\"2021.12.12420\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"version\":\"0.63.13\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.12\",\"preRelease\":false},{\"identifier\":{\"id\":\"ms-vscode-remote.vscode-remote-extensionpack\",\"uuid\":\"23d72dfc-8dd1-4e30-926e-8783b4378f13\"},\"version\":\"0.21.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.62.0\",\"preRelease\":false},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.15\",\"preRelease\":false},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.81\",\"preRelease\":false},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\",\"preRelease\":false},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"version\":\"4.11.0\",\"preRelease\":false,\"installed\":true,\"state\":{\"material-icon-theme.version\":\"4.11.0\"}},{\"identifier\":{\"id\":\"rokoroku.vscode-theme-darcula\",\"uuid\":\"ec2271c0-9d6d-44c5-93e5-7e8cda744f21\"},\"version\":\"1.2.3\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"vscode-icons-team.vscode-icons\",\"uuid\":\"9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a\"},\"version\":\"11.8.0\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"vsls-contrib.gistfs\",\"uuid\":\"0cfb9d1d-3e59-4c36-a597-157b54e4442b\"},\"version\":\"0.3.0\",\"preRelease\":false,\"installed\":true,\"state\":{}},{\"identifier\":{\"id\":\"whatwedo.twig\",\"uuid\":\"3324c5be-43aa-4c39-a0f8-d94c2978804f\"},\"version\":\"1.0.2\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"wholroyd.jinja\",\"uuid\":\"c941a679-d500-46a8-b2a9-208063125901\"},\"version\":\"0.0.8\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"william-voyek.vscode-nginx\",\"uuid\":\"414b2873-c80e-4dc6-9031-bd185cfb3944\"},\"version\":\"0.7.2\",\"preRelease\":false,\"installed\":true},{\"identifier\":{\"id\":\"xabikos.reactsnippets\",\"uuid\":\"c807e072-5951-4a01-9542-450f946c7ec1\"},\"version\":\"2.4.0\",\"preRelease\":false,\"installed\":true}]"} |
This file contains 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
{"ref":"0a8f459a-f195-42cd-b4bc-5b0bba09b14e","content":"{\"version\":5,\"machineId\":\"e89ee9bd-ce11-499b-b1b0-4f38f94454fc\",\"content\":\"[{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.bat\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.clojure\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.coffeescript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.configuration-editing\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.cpp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.csharp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.dart\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-auto-launch\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-server-ready\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.diff\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.docker\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.emmet\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.extension-editing\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.fsharp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git-base\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github-authentication\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.2\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.go\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.groovy\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.grunt\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.gulp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.handlebars\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.hlsl\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.image-preview\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ini\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ipynb\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.jake\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.java\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.javascript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.julia\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.less\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.log\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.lua\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.make\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-math\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.merge-conflict\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.microsoft-authentication\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-wsl-recommender\\\",\\\"uuid\\\":\\\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.12\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug\\\",\\\"uuid\\\":\\\"25629058-ddac-4e17-abba-74678e126c5d\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.62.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug-companion\\\",\\\"uuid\\\":\\\"99cb0b7f-7354-4278-b8da-6cc79972169d\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.15\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.references-view\\\",\\\"uuid\\\":\\\"dc489f46-520d-4556-ae85-1f9eab3c412d\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.81\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.vscode-js-profile-table\\\",\\\"uuid\\\":\\\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.18\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.npm\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.objective-c\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.perl\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.powershell\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.pug\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.python\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.r\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.razor\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ruby\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.rust\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.scss\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.search-result\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shaderlab\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shellscript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.simple-browser\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.sql\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.swift\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-abyss\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-defaults\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-kimbie-dark\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai-dimmed\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-quietlight\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-red\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vscode-theme-seti\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-dark\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-light\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-tomorrow-night-blue\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vb\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.xml\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.yaml\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"eamodio.gitlens\\\",\\\"uuid\\\":\\\"4de763bd-505d-4978-9575-2b7696ecf94e\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"11.7.0\\\",\\\"installed\\\":true,\\\"state\\\":{\\\"gitlens:synced:version\\\":\\\"11.7.0\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"esbenp.prettier-vscode\\\",\\\"uuid\\\":\\\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"9.1.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"johnpapa.vscode-peacock\\\",\\\"uuid\\\":\\\"5a7017bf-c571-4d77-b902-6e56b16f539a\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"4.0.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-ceintl.vscode-language-pack-pt-br\\\",\\\"uuid\\\":\\\"3fd25437-acd9-42d7-ab19-581a69ce2dd9\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.63.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-ssh\\\",\\\"uuid\\\":\\\"607fd052-be03-4363-b657-2bd62b83d28a\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.70.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-wsl\\\",\\\"uuid\\\":\\\"f0c5397b-d357-4197-99f0-cb4202f22818\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.63.13\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"steoates.autoimport\\\",\\\"uuid\\\":\\\"70378119-1d85-4935-9733-0298c7a369a2\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.5.4\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"xabikos.reactsnippets\\\",\\\"uuid\\\":\\\"c807e072-5951-4a01-9542-450f946c7ec1\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"2.4.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"shan.code-settings-sync\\\",\\\"uuid\\\":\\\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"3.4.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"vsls-contrib.gistfs\\\",\\\"uuid\\\":\\\"0cfb9d1d-3e59-4c36-a597-157b54e4442b\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.3.0\\\",\\\"installed\\\":true,\\\"state\\\":{}}]\"}","skippedExtensions":[]} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_vs-json\\\",\\\"label\\\":\\\"Dark (Visual Studio)\\\",\\\"settingsId\\\":\\\"Visual Studio Dark\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"157\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"157\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"157\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Tue Sep 01 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Search\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":false},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true}]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_vs-json\\\",\\\"label\\\":\\\"Dark (Visual Studio)\\\",\\\"settingsId\\\":\\\"Visual Studio Dark\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"157\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"157\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"157\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Tue Sep 01 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Search\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true}]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_vs-json\\\",\\\"label\\\":\\\"Dark (Visual Studio)\\\",\\\"settingsId\\\":\\\"Visual Studio Dark\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"157\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"157\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"157\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"11\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Search\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true}]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_vs-json\\\",\\\"label\\\":\\\"Dark (Visual Studio)\\\",\\\"settingsId\\\":\\\"Visual Studio Dark\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"157\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"157\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"157\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"11\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Search\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true}]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_vs-json\\\",\\\"label\\\":\\\"Dark (Visual Studio)\\\",\\\"settingsId\\\":\\\"Visual Studio Dark\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Mon Nov 16 2020\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"158\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Mon Nov 16 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"158\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Mon Nov 16 2020\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"158\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"11\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Search\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":false},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true}]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark dracula-theme-theme-dracula-theme-dracula-json\\\",\\\"label\\\":\\\"Dracula\\\",\\\"settingsId\\\":\\\"Dracula\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"emphasis\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":[\\\"strong\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"header\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"source\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6272A4\\\"},\\\"scope\\\":[\\\"meta.diff\\\",\\\"meta.diff.header\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"markup.inserted\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5555\\\"},\\\"scope\\\":[\\\"markup.deleted\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"markup.changed\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5555\\\",\\\"fontStyle\\\":\\\"underline italic\\\"},\\\"scope\\\":[\\\"invalid\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\",\\\"fontStyle\\\":\\\"underline italic\\\"},\\\"scope\\\":[\\\"invalid.deprecated\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"entity.name.filename\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5555\\\"},\\\"scope\\\":[\\\"markup.error\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":[\\\"markup.underline\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"markup.bold\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"markup.heading\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"markup.italic\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"beginning.punctuation.definition.list.markdown\\\",\\\"beginning.punctuation.definition.quote.markdown\\\",\\\"punctuation.definition.link.restructuredtext\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"markup.inline.raw\\\",\\\"markup.raw.restructuredtext\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"markup.underline.link\\\",\\\"markup.underline.link.image\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"meta.link.reference.def.restructuredtext\\\",\\\"punctuation.definition.directive.restructuredtext\\\",\\\"string.other.link.description\\\",\\\"string.other.link.title\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"entity.name.directive.restructuredtext\\\",\\\"markup.quote\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6272A4\\\"},\\\"scope\\\":[\\\"meta.separator.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"fenced_code.block.language\\\",\\\"markup.raw.inner.restructuredtext\\\",\\\"markup.fenced_code.block.markdown punctuation.definition.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"punctuation.definition.constant.restructuredtext\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"markup.heading.markdown punctuation.definition.string.begin\\\",\\\"markup.heading.markdown punctuation.definition.string.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.paragraph.markdown punctuation.definition.string.begin\\\",\\\"meta.paragraph.markdown punctuation.definition.string.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin\\\",\\\"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\",\\\"fontStyle\\\":\\\"normal\\\"},\\\"scope\\\":[\\\"entity.name.type.class\\\",\\\"entity.name.class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BD93F9\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"keyword.expressions-and-types.swift\\\",\\\"keyword.other.this\\\",\\\"variable.language\\\",\\\"variable.language punctuation.definition.variable.php\\\",\\\"variable.other.readwrite.instance.ruby\\\",\\\"variable.parameter.function.language.special\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"entity.other.inherited-class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6272A4\\\"},\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\",\\\"unused.comment\\\",\\\"wildcard.comment\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"comment keyword.codetag.notation\\\",\\\"comment.block.documentation keyword\\\",\\\"comment.block.documentation storage.type.class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"comment.block.documentation entity.name.type\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"comment.block.documentation entity.name.type punctuation.definition.bracket\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"comment.block.documentation variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"constant\\\",\\\"variable.other.constant\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"constant.character.escape\\\",\\\"constant.character.string.escape\\\",\\\"constant.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"entity.name.tag\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.parent-selector\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"entity.name.function\\\",\\\"meta.function-call.generic\\\",\\\"meta.function-call.object\\\",\\\"meta.function-call.php\\\",\\\"meta.function-call.static\\\",\\\"meta.method-call.java meta.method\\\",\\\"meta.method.groovy\\\",\\\"support.function.any-method.lua\\\",\\\"keyword.operator.function.infix\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"entity.name.variable.parameter\\\",\\\"meta.at-rule.function variable\\\",\\\"meta.at-rule.mixin variable\\\",\\\"meta.function.arguments variable.other.php\\\",\\\"meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql\\\",\\\"variable.parameter\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"meta.decorator variable.other.readwrite\\\",\\\"meta.decorator variable.other.property\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"meta.decorator variable.other.object\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"keyword\\\",\\\"punctuation.definition.keyword\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":[\\\"keyword.control.new\\\",\\\"keyword.operator.new\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"meta.selector\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"support\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\",\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"support.function.magic\\\",\\\"support.variable\\\",\\\"variable.other.predefined\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\"},\\\"scope\\\":[\\\"support.function\\\",\\\"support.type.property-name\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"constant.other.symbol.hashkey punctuation.definition.constant.ruby\\\",\\\"entity.other.attribute-name.placeholder punctuation\\\",\\\"entity.other.attribute-name.pseudo-class punctuation\\\",\\\"entity.other.attribute-name.pseudo-element punctuation\\\",\\\"meta.group.double.toml\\\",\\\"meta.group.toml\\\",\\\"meta.object-binding-pattern-variable punctuation.destructuring\\\",\\\"punctuation.colon.graphql\\\",\\\"punctuation.definition.block.scalar.folded.yaml\\\",\\\"punctuation.definition.block.scalar.literal.yaml\\\",\\\"punctuation.definition.block.sequence.item.yaml\\\",\\\"punctuation.definition.entity.other.inherited-class\\\",\\\"punctuation.function.swift\\\",\\\"punctuation.separator.dictionary.key-value\\\",\\\"punctuation.separator.hash\\\",\\\"punctuation.separator.inheritance\\\",\\\"punctuation.separator.key-value\\\",\\\"punctuation.separator.key-value.mapping.yaml\\\",\\\"punctuation.separator.namespace\\\",\\\"punctuation.separator.pointer-access\\\",\\\"punctuation.separator.slice\\\",\\\"string.unquoted.heredoc punctuation.definition.string\\\",\\\"support.other.chomping-indicator.yaml\\\",\\\"punctuation.separator.annotation\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"keyword.operator.other.powershell\\\",\\\"keyword.other.statement-separator.powershell\\\",\\\"meta.brace.round\\\",\\\"meta.function-call punctuation\\\",\\\"punctuation.definition.arguments.begin\\\",\\\"punctuation.definition.arguments.end\\\",\\\"punctuation.definition.entity.begin\\\",\\\"punctuation.definition.entity.end\\\",\\\"punctuation.definition.tag.cs\\\",\\\"punctuation.definition.type.begin\\\",\\\"punctuation.definition.type.end\\\",\\\"punctuation.section.scope.begin\\\",\\\"punctuation.section.scope.end\\\",\\\"storage.type.generic.java\\\",\\\"string.template meta.brace\\\",\\\"string.template punctuation.accessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"meta.string-contents.quoted.double punctuation.definition.variable\\\",\\\"punctuation.definition.interpolation.begin\\\",\\\"punctuation.definition.interpolation.end\\\",\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded.begin\\\",\\\"punctuation.section.embedded.coffee\\\",\\\"punctuation.section.embedded.end\\\",\\\"punctuation.section.embedded.end source.php\\\",\\\"punctuation.section.embedded.end source.ruby\\\",\\\"punctuation.definition.variable.makefile\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"entity.name.function.target.makefile\\\",\\\"entity.name.section.toml\\\",\\\"entity.name.tag.yaml\\\",\\\"variable.other.key.toml\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"constant.other.date\\\",\\\"constant.other.timestamp\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic underline\\\",\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"variable.other.alias.yaml\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\",\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"storage\\\",\\\"meta.implementation storage.type.objc\\\",\\\"meta.interface-or-protocol storage.type.objc\\\",\\\"source.groovy storage.type.def\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"entity.name.type\\\",\\\"keyword.primitive-datatypes.swift\\\",\\\"keyword.type.cs\\\",\\\"meta.protocol-list.objc\\\",\\\"meta.return-type.objc\\\",\\\"source.go storage.type\\\",\\\"source.groovy storage.type\\\",\\\"source.java storage.type\\\",\\\"source.powershell entity.other.attribute-name\\\",\\\"storage.class.std.rust\\\",\\\"storage.type.attribute.swift\\\",\\\"storage.type.c\\\",\\\"storage.type.core.rust\\\",\\\"storage.type.cs\\\",\\\"storage.type.groovy\\\",\\\"storage.type.objc\\\",\\\"storage.type.php\\\",\\\"storage.type.haskell\\\",\\\"storage.type.ocaml\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"entity.name.type.type-parameter\\\",\\\"meta.indexer.mappedtype.declaration entity.name.type\\\",\\\"meta.type.parameters entity.name.type\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"string.regexp\\\",\\\"constant.other.character-class.set.regexp\\\",\\\"constant.character.escape.backslash.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF79C6\\\"},\\\"scope\\\":[\\\"punctuation.definition.group.capture.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5555\\\"},\\\"scope\\\":[\\\"string.regexp punctuation.definition.string.begin\\\",\\\"string.regexp punctuation.definition.string.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"punctuation.definition.character-class.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"punctuation.definition.group.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5555\\\"},\\\"scope\\\":[\\\"punctuation.definition.group.assertion.regexp\\\",\\\"keyword.operator.negation.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#50FA7B\\\"},\\\"scope\\\":[\\\"meta.assertion.look-ahead.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"string\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E9F284\\\"},\\\"scope\\\":[\\\"punctuation.definition.string.begin\\\",\\\"punctuation.definition.string.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FE\\\"},\\\"scope\\\":[\\\"punctuation.support.type.property-name.begin\\\",\\\"punctuation.support.type.property-name.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6272A4\\\"},\\\"scope\\\":[\\\"string.quoted.docstring.multi\\\",\\\"string.quoted.docstring.multi.python punctuation.definition.string.begin\\\",\\\"string.quoted.docstring.multi.python punctuation.definition.string.end\\\",\\\"string.quoted.docstring.multi.python constant.character.escape\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"variable\\\",\\\"constant.other.key.perl\\\",\\\"support.variable.property\\\",\\\"variable.other.constant.js\\\",\\\"variable.other.constant.ts\\\",\\\"variable.other.constant.tsx\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":[\\\"meta.import variable.other.readwrite\\\",\\\"meta.object-binding-pattern-variable variable.object.property\\\",\\\"meta.variable.assignment.destructured.object.coffee variable\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"normal\\\",\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.import variable.other.readwrite.alias\\\",\\\"meta.export variable.other.readwrite.alias\\\",\\\"meta.variable.assignment.destructured.object.coffee variable variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"meta.selectionset.graphql variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.selectionset.graphql meta.arguments variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8BE9FD\\\"},\\\"scope\\\":[\\\"entity.name.fragment.graphql\\\",\\\"variable.fragment.graphql\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"constant.other.symbol.hashkey.ruby\\\",\\\"keyword.operator.dereference.java\\\",\\\"keyword.operator.navigation.groovy\\\",\\\"meta.scope.for-loop.shell punctuation.definition.string.begin\\\",\\\"meta.scope.for-loop.shell punctuation.definition.string.end\\\",\\\"meta.scope.for-loop.shell string\\\",\\\"storage.modifier.import\\\",\\\"punctuation.section.embedded.begin.tsx\\\",\\\"punctuation.section.embedded.end.tsx\\\",\\\"punctuation.section.embedded.begin.jsx\\\",\\\"punctuation.section.embedded.end.jsx\\\",\\\"punctuation.separator.list.comma.css\\\",\\\"constant.language.empty-list.haskell\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"source.shell variable.other\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"normal\\\",\\\"foreground\\\":\\\"#BD93F9\\\"},\\\"scope\\\":[\\\"support.constant\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"meta.scope.prerequisites.makefile\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F1FA8C\\\"},\\\"scope\\\":[\\\"meta.attribute-selector.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"punctuation.definition.attribute-selector.end.bracket.square.scss\\\",\\\"punctuation.definition.attribute-selector.begin.bracket.square.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6272A4\\\"},\\\"scope\\\":[\\\"meta.preprocessor.haskell\\\"]}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"dracula-theme.theme-dracula\\\",\\\"_extensionIsBuiltin\\\":false,\\\"_extensionName\\\":\\\"theme-dracula\\\",\\\"_extensionPublisher\\\":\\\"dracula-theme\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"terminal.background\\\":\\\"#282a36\\\",\\\"terminal.foreground\\\":\\\"#f8f8f2\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#6272a4\\\",\\\"terminal.ansiBrightRed\\\":\\\"#ff6e6e\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#69ff94\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#ffffa5\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#d6acff\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#ff92df\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#a4ffff\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiBlack\\\":\\\"#21222c\\\",\\\"terminal.ansiRed\\\":\\\"#ff5555\\\",\\\"terminal.ansiGreen\\\":\\\"#50fa7b\\\",\\\"terminal.ansiYellow\\\":\\\"#f1fa8c\\\",\\\"terminal.ansiBlue\\\":\\\"#bd93f9\\\",\\\"terminal.ansiMagenta\\\":\\\"#ff79c6\\\",\\\"terminal.ansiCyan\\\":\\\"#8be9fd\\\",\\\"terminal.ansiWhite\\\":\\\"#f8f8f2\\\",\\\"contrastBorder\\\":\\\"#191a21\\\",\\\"focusBorder\\\":\\\"#6272a4\\\",\\\"foreground\\\":\\\"#f8f8f2\\\",\\\"selection.background\\\":\\\"#bd93f9\\\",\\\"errorForeground\\\":\\\"#ff5555\\\",\\\"button.background\\\":\\\"#44475a\\\",\\\"button.foreground\\\":\\\"#f8f8f2\\\",\\\"dropdown.background\\\":\\\"#343746\\\",\\\"dropdown.border\\\":\\\"#191a21\\\",\\\"dropdown.foreground\\\":\\\"#f8f8f2\\\",\\\"input.background\\\":\\\"#282a36\\\",\\\"input.foreground\\\":\\\"#f8f8f2\\\",\\\"input.border\\\":\\\"#191a21\\\",\\\"input.placeholderForeground\\\":\\\"#6272a4\\\",\\\"inputOption.activeBorder\\\":\\\"#bd93f9\\\",\\\"inputValidation.infoBorder\\\":\\\"#ff79c6\\\",\\\"inputValidation.warningBorder\\\":\\\"#ffb86c\\\",\\\"inputValidation.errorBorder\\\":\\\"#ff5555\\\",\\\"badge.foreground\\\":\\\"#f8f8f2\\\",\\\"badge.background\\\":\\\"#44475a\\\",\\\"progressBar.background\\\":\\\"#ff79c6\\\",\\\"list.activeSelectionBackground\\\":\\\"#44475a\\\",\\\"list.activeSelectionForeground\\\":\\\"#f8f8f2\\\",\\\"list.dropBackground\\\":\\\"#44475a\\\",\\\"list.focusBackground\\\":\\\"#44475a75\\\",\\\"list.highlightForeground\\\":\\\"#8be9fd\\\",\\\"list.hoverBackground\\\":\\\"#44475a75\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#44475a75\\\",\\\"list.warningForeground\\\":\\\"#ffb86c\\\",\\\"list.errorForeground\\\":\\\"#ff5555\\\",\\\"activityBar.background\\\":\\\"#343746\\\",\\\"activityBar.inactiveForeground\\\":\\\"#6272a4\\\",\\\"activityBar.foreground\\\":\\\"#f8f8f2\\\",\\\"activityBar.activeBorder\\\":\\\"#ff79c680\\\",\\\"activityBar.activeBackground\\\":\\\"#bd93f910\\\",\\\"activityBarBadge.background\\\":\\\"#ff79c6\\\",\\\"activityBarBadge.foreground\\\":\\\"#f8f8f2\\\",\\\"sideBar.background\\\":\\\"#21222c\\\",\\\"sideBarTitle.foreground\\\":\\\"#f8f8f2\\\",\\\"sideBarSectionHeader.background\\\":\\\"#282a36\\\",\\\"sideBarSectionHeader.border\\\":\\\"#191a21\\\",\\\"editorGroup.border\\\":\\\"#bd93f9\\\",\\\"editorGroup.dropBackground\\\":\\\"#44475a70\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#191a21\\\",\\\"tab.activeBackground\\\":\\\"#282a36\\\",\\\"tab.activeForeground\\\":\\\"#f8f8f2\\\",\\\"tab.border\\\":\\\"#191a21\\\",\\\"tab.activeBorderTop\\\":\\\"#ff79c680\\\",\\\"tab.inactiveBackground\\\":\\\"#21222c\\\",\\\"tab.inactiveForeground\\\":\\\"#6272a4\\\",\\\"editor.foreground\\\":\\\"#f8f8f2\\\",\\\"editor.background\\\":\\\"#282a36\\\",\\\"editorLineNumber.foreground\\\":\\\"#6272a4\\\",\\\"editor.selectionBackground\\\":\\\"#44475a\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#424450\\\",\\\"editor.foldBackground\\\":\\\"#21222c\\\",\\\"editor.wordHighlightBackground\\\":\\\"#8be9fd50\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#50fa7b50\\\",\\\"editor.findMatchBackground\\\":\\\"#ffb86c80\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#ffffff40\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#44475a75\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#8be9fd50\\\",\\\"editor.lineHighlightBorder\\\":\\\"#44475a\\\",\\\"editorLink.activeForeground\\\":\\\"#8be9fd\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#bd93f915\\\",\\\"editor.snippetTabstopHighlightBackground\\\":\\\"#282a36\\\",\\\"editor.snippetTabstopHighlightBorder\\\":\\\"#6272a4\\\",\\\"editor.snippetFinalTabstopHighlightBackground\\\":\\\"#282a36\\\",\\\"editor.snippetFinalTabstopHighlightBorder\\\":\\\"#50fa7b\\\",\\\"editorWhitespace.foreground\\\":\\\"#ffffff1a\\\",\\\"editorIndentGuide.background\\\":\\\"#ffffff1a\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#ffffff45\\\",\\\"editorRuler.foreground\\\":\\\"#ffffff1a\\\",\\\"editorCodeLens.foreground\\\":\\\"#6272a4\\\",\\\"editorOverviewRuler.border\\\":\\\"#191a21\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#ffb86c\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#8be9fd\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#50fa7b\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#8be9fd80\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#50fa7b80\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#ff555580\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#ff555580\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#ffb86c80\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#8be9fd80\\\",\\\"editorError.foreground\\\":\\\"#ff5555\\\",\\\"editorWarning.foreground\\\":\\\"#8be9fd\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#8be9fd80\\\",\\\"editorGutter.addedBackground\\\":\\\"#50fa7b80\\\",\\\"editorGutter.deletedBackground\\\":\\\"#ff555580\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#8be9fd\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#ff5555\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#50fa7b\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#6272a4\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#ffb86c\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#50fa7b20\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#ff555550\\\",\\\"editorWidget.background\\\":\\\"#21222c\\\",\\\"editorSuggestWidget.background\\\":\\\"#21222c\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#f8f8f2\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#44475a\\\",\\\"editorHoverWidget.background\\\":\\\"#282a36\\\",\\\"editorHoverWidget.border\\\":\\\"#6272a4\\\",\\\"editorMarkerNavigation.background\\\":\\\"#21222c\\\",\\\"peekView.border\\\":\\\"#44475a\\\",\\\"peekViewEditor.background\\\":\\\"#282a36\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#f1fa8c80\\\",\\\"peekViewResult.background\\\":\\\"#21222c\\\",\\\"peekViewResult.fileForeground\\\":\\\"#f8f8f2\\\",\\\"peekViewResult.lineForeground\\\":\\\"#f8f8f2\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#f1fa8c80\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#44475a\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#f8f8f2\\\",\\\"peekViewTitle.background\\\":\\\"#191a21\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#6272a4\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#f8f8f2\\\",\\\"merge.currentHeaderBackground\\\":\\\"#50fa7b90\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#bd93f990\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#50fa7b\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#bd93f9\\\",\\\"panel.background\\\":\\\"#282a36\\\",\\\"panel.border\\\":\\\"#bd93f9\\\",\\\"panelTitle.activeBorder\\\":\\\"#ff79c6\\\",\\\"panelTitle.activeForeground\\\":\\\"#f8f8f2\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#6272a4\\\",\\\"statusBar.background\\\":\\\"#191a21\\\",\\\"statusBar.foreground\\\":\\\"#f8f8f2\\\",\\\"statusBar.debuggingBackground\\\":\\\"#ff5555\\\",\\\"statusBar.debuggingForeground\\\":\\\"#191a21\\\",\\\"statusBar.noFolderBackground\\\":\\\"#191a21\\\",\\\"statusBar.noFolderForeground\\\":\\\"#f8f8f2\\\",\\\"statusBarItem.prominentBackground\\\":\\\"#ff5555\\\",\\\"statusBarItem.prominentHoverBackground\\\":\\\"#ffb86c\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#f8f8f2\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#bd93f9\\\",\\\"titleBar.activeBackground\\\":\\\"#21222c\\\",\\\"titleBar.activeForeground\\\":\\\"#f8f8f2\\\",\\\"titleBar.inactiveBackground\\\":\\\"#191a21\\\",\\\"titleBar.inactiveForeground\\\":\\\"#6272a4\\\",\\\"notification.background\\\":\\\"#282a36\\\",\\\"notification.foreground\\\":\\\"#f8f8f2\\\",\\\"notification.buttonBackground\\\":\\\"#44475a\\\",\\\"notification.buttonForeground\\\":\\\"#f8f8f2\\\",\\\"notification.buttonHoverBackground\\\":\\\"#44475a75\\\",\\\"notification.errorBackground\\\":\\\"#ff5555\\\",\\\"notification.errorForeground\\\":\\\"#f8f8f2\\\",\\\"notification.infoBackground\\\":\\\"#8be9fd\\\",\\\"notification.infoForeground\\\":\\\"#282a36\\\",\\\"notification.warningBackground\\\":\\\"#ffb86c\\\",\\\"notification.warningForeground\\\":\\\"#282a36\\\",\\\"extensionButton.prominentForeground\\\":\\\"#f8f8f2\\\",\\\"extensionButton.prominentBackground\\\":\\\"#50fa7b90\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#50fa7b60\\\",\\\"pickerGroup.border\\\":\\\"#bd93f9\\\",\\\"pickerGroup.foreground\\\":\\\"#8be9fd\\\",\\\"debugToolBar.background\\\":\\\"#21222c\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#21222c\\\",\\\"settings.headerForeground\\\":\\\"#f8f8f2\\\",\\\"settings.modifiedItemForeground\\\":\\\"#ffb86c\\\",\\\"settings.modifiedItemIndicator\\\":\\\"#ffb86c\\\",\\\"settings.dropdownBackground\\\":\\\"#21222c\\\",\\\"settings.dropdownForeground\\\":\\\"#f8f8f2\\\",\\\"settings.dropdownBorder\\\":\\\"#191a21\\\",\\\"settings.checkboxBackground\\\":\\\"#21222c\\\",\\\"settings.checkboxForeground\\\":\\\"#f8f8f2\\\",\\\"settings.checkboxBorder\\\":\\\"#191a21\\\",\\\"settings.textInputBackground\\\":\\\"#21222c\\\",\\\"settings.textInputForeground\\\":\\\"#f8f8f2\\\",\\\"settings.textInputBorder\\\":\\\"#191a21\\\",\\\"settings.numberInputBackground\\\":\\\"#21222c\\\",\\\"settings.numberInputForeground\\\":\\\"#f8f8f2\\\",\\\"settings.numberInputBorder\\\":\\\"#191a21\\\",\\\"breadcrumb.foreground\\\":\\\"#6272a4\\\",\\\"breadcrumb.background\\\":\\\"#282a36\\\",\\\"breadcrumb.focusForeground\\\":\\\"#f8f8f2\\\",\\\"breadcrumb.activeSelectionForeground\\\":\\\"#f8f8f2\\\",\\\"breadcrumbPicker.background\\\":\\\"#191a21\\\",\\\"listFilterWidget.background\\\":\\\"#343746\\\",\\\"listFilterWidget.outline\\\":\\\"#424450\\\",\\\"listFilterWidget.noMatchesOutline\\\":\\\"#ff5555\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 22 2020\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"160\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 22 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"160\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 22 2020\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"160\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"11\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Search\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":true}]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.updates\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.welcome\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"ces/skipSurvey\":{\"version\":1,\"value\":\"1.57.1\"},\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_plus-json\\\",\\\"label\\\":\\\"Dark+ (default dark)\\\",\\\"settingsId\\\":\\\"Default Dark+\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#DCDCAA\\\"},\\\"scope\\\":[\\\"entity.name.function\\\",\\\"support.function\\\",\\\"support.constant.handlebars\\\",\\\"source.powershell variable.other.member\\\",\\\"entity.name.operator.custom-literal\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4EC9B0\\\"},\\\"scope\\\":[\\\"meta.return-type\\\",\\\"support.class\\\",\\\"support.type\\\",\\\"entity.name.type\\\",\\\"entity.name.namespace\\\",\\\"entity.other.attribute\\\",\\\"entity.name.scope-resolution\\\",\\\"entity.name.class\\\",\\\"storage.type.numeric.go\\\",\\\"storage.type.byte.go\\\",\\\"storage.type.boolean.go\\\",\\\"storage.type.string.go\\\",\\\"storage.type.uintptr.go\\\",\\\"storage.type.error.go\\\",\\\"storage.type.rune.go\\\",\\\"storage.type.cs\\\",\\\"storage.type.generic.cs\\\",\\\"storage.type.modifier.cs\\\",\\\"storage.type.variable.cs\\\",\\\"storage.type.annotation.java\\\",\\\"storage.type.generic.java\\\",\\\"storage.type.java\\\",\\\"storage.type.object.array.java\\\",\\\"storage.type.primitive.array.java\\\",\\\"storage.type.primitive.java\\\",\\\"storage.type.token.java\\\",\\\"storage.type.groovy\\\",\\\"storage.type.annotation.groovy\\\",\\\"storage.type.parameters.groovy\\\",\\\"storage.type.generic.groovy\\\",\\\"storage.type.object.array.groovy\\\",\\\"storage.type.primitive.array.groovy\\\",\\\"storage.type.primitive.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4EC9B0\\\"},\\\"scope\\\":[\\\"meta.type.cast.expr\\\",\\\"meta.type.new.expr\\\",\\\"support.constant.math\\\",\\\"support.constant.dom\\\",\\\"support.constant.json\\\",\\\"entity.other.inherited-class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#C586C0\\\"},\\\"scope\\\":[\\\"keyword.control\\\",\\\"source.cpp keyword.operator.new\\\",\\\"keyword.operator.delete\\\",\\\"keyword.other.using\\\",\\\"keyword.other.operator\\\",\\\"entity.name.operator\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9CDCFE\\\"},\\\"scope\\\":[\\\"variable\\\",\\\"meta.definition.variable.name\\\",\\\"support.variable\\\",\\\"entity.name.variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4FC1FF\\\"},\\\"scope\\\":[\\\"variable.other.constant\\\",\\\"variable.other.enummember\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9CDCFE\\\"},\\\"scope\\\":[\\\"meta.object-literal.key\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CE9178\\\"},\\\"scope\\\":[\\\"support.constant.property-value\\\",\\\"support.constant.font-name\\\",\\\"support.constant.media-type\\\",\\\"support.constant.media\\\",\\\"constant.other.color.rgb-value\\\",\\\"constant.other.rgb-value\\\",\\\"support.constant.color\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CE9178\\\"},\\\"scope\\\":[\\\"punctuation.definition.group.regexp\\\",\\\"punctuation.definition.group.assertion.regexp\\\",\\\"punctuation.definition.character-class.regexp\\\",\\\"punctuation.character.set.begin.regexp\\\",\\\"punctuation.character.set.end.regexp\\\",\\\"keyword.operator.negation.regexp\\\",\\\"support.other.parenthesis.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":[\\\"constant.character.character-class.regexp\\\",\\\"constant.other.character-class.set.regexp\\\",\\\"constant.other.character-class.regexp\\\",\\\"constant.character.set.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#DCDCAA\\\"},\\\"scope\\\":[\\\"keyword.operator.or.regexp\\\",\\\"keyword.control.anchor.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"keyword.operator.quantifier.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.character\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"constant.character.escape\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#C8C8C8\\\"},\\\"scope\\\":\\\"entity.name.label\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#c586c0\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#dcdcaa\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#369432\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"1\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"1\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"1\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"1\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"1\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.test\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"visible\\\":true}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false}]\"},\"workbench.statusbar.hidden\":{\"version\":1,\"value\":\"[\\\"status.workspaceTrust.1625610834833\\\",\\\"status.workspaceTrust.535ccc86898b666516dd436d6f7dee95\\\"]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"ces/skipSurvey\":{\"version\":1,\"value\":\"1.57.1\"},\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_plus-json\\\",\\\"label\\\":\\\"Dark+ (default dark)\\\",\\\"settingsId\\\":\\\"Default Dark+\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#DCDCAA\\\"},\\\"scope\\\":[\\\"entity.name.function\\\",\\\"support.function\\\",\\\"support.constant.handlebars\\\",\\\"source.powershell variable.other.member\\\",\\\"entity.name.operator.custom-literal\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4EC9B0\\\"},\\\"scope\\\":[\\\"meta.return-type\\\",\\\"support.class\\\",\\\"support.type\\\",\\\"entity.name.type\\\",\\\"entity.name.namespace\\\",\\\"entity.other.attribute\\\",\\\"entity.name.scope-resolution\\\",\\\"entity.name.class\\\",\\\"storage.type.numeric.go\\\",\\\"storage.type.byte.go\\\",\\\"storage.type.boolean.go\\\",\\\"storage.type.string.go\\\",\\\"storage.type.uintptr.go\\\",\\\"storage.type.error.go\\\",\\\"storage.type.rune.go\\\",\\\"storage.type.cs\\\",\\\"storage.type.generic.cs\\\",\\\"storage.type.modifier.cs\\\",\\\"storage.type.variable.cs\\\",\\\"storage.type.annotation.java\\\",\\\"storage.type.generic.java\\\",\\\"storage.type.java\\\",\\\"storage.type.object.array.java\\\",\\\"storage.type.primitive.array.java\\\",\\\"storage.type.primitive.java\\\",\\\"storage.type.token.java\\\",\\\"storage.type.groovy\\\",\\\"storage.type.annotation.groovy\\\",\\\"storage.type.parameters.groovy\\\",\\\"storage.type.generic.groovy\\\",\\\"storage.type.object.array.groovy\\\",\\\"storage.type.primitive.array.groovy\\\",\\\"storage.type.primitive.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4EC9B0\\\"},\\\"scope\\\":[\\\"meta.type.cast.expr\\\",\\\"meta.type.new.expr\\\",\\\"support.constant.math\\\",\\\"support.constant.dom\\\",\\\"support.constant.json\\\",\\\"entity.other.inherited-class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#C586C0\\\"},\\\"scope\\\":[\\\"keyword.control\\\",\\\"source.cpp keyword.operator.new\\\",\\\"keyword.operator.delete\\\",\\\"keyword.other.using\\\",\\\"keyword.other.operator\\\",\\\"entity.name.operator\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9CDCFE\\\"},\\\"scope\\\":[\\\"variable\\\",\\\"meta.definition.variable.name\\\",\\\"support.variable\\\",\\\"entity.name.variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4FC1FF\\\"},\\\"scope\\\":[\\\"variable.other.constant\\\",\\\"variable.other.enummember\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9CDCFE\\\"},\\\"scope\\\":[\\\"meta.object-literal.key\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CE9178\\\"},\\\"scope\\\":[\\\"support.constant.property-value\\\",\\\"support.constant.font-name\\\",\\\"support.constant.media-type\\\",\\\"support.constant.media\\\",\\\"constant.other.color.rgb-value\\\",\\\"constant.other.rgb-value\\\",\\\"support.constant.color\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CE9178\\\"},\\\"scope\\\":[\\\"punctuation.definition.group.regexp\\\",\\\"punctuation.definition.group.assertion.regexp\\\",\\\"punctuation.definition.character-class.regexp\\\",\\\"punctuation.character.set.begin.regexp\\\",\\\"punctuation.character.set.end.regexp\\\",\\\"keyword.operator.negation.regexp\\\",\\\"support.other.parenthesis.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":[\\\"constant.character.character-class.regexp\\\",\\\"constant.other.character-class.set.regexp\\\",\\\"constant.other.character-class.regexp\\\",\\\"constant.character.set.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#DCDCAA\\\"},\\\"scope\\\":[\\\"keyword.operator.or.regexp\\\",\\\"keyword.control.anchor.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"keyword.operator.quantifier.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.character\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"constant.character.escape\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#C8C8C8\\\"},\\\"scope\\\":\\\"entity.name.label\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#c586c0\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#dcdcaa\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#369432\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\"},\\\"watch\\\":false}\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"2\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"2\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"2\"},\"memento/gettingStartedService\":{\"version\":1,\"value\":\"{\\\"pickColorTheme\\\":{\\\"done\\\":true}}\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"2\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Tue Jul 06 2021\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.test\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problems\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Output\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"visible\\\":true}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false}]\"},\"workbench.statusbar.hidden\":{\"version\":1,\"value\":\"[\\\"status.workspaceTrust.c8dabef4e62bdad3b9885f1b2724a093\\\"]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"Comments.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"isHidden\\\":false}]\"},\"ces/skipSurvey\":{\"version\":1,\"value\":\"1.56.2\"},\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark rokoroku-vscode-theme-darcula-themes-darcula-json\\\",\\\"label\\\":\\\"Darcula\\\",\\\"settingsId\\\":\\\"Darcula\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#707070\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"keyword.operator,keyword.operator.logical,keyword.operator.relational,keyword.operator.assignment,keyword.operator.comparison,keyword.operator.ternary,keyword.operator.arithmetic,keyword.operator.spread\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"string,string.character.escape,string.template.quoted,string.template.quoted.punctuation,string.template.quoted.punctuation.single,string.template.quoted.punctuation.double,string.type.declaration.annotation,string.template.quoted.punctuation.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"punctuation.definition.template-expression.begin,punctuation.definition.template-expression.end\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"expression.string,meta.template.expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"constant.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"constant.language,variable.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":\\\"constant.character, constant.other\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"keyword,keyword.operator.new,keyword.operator.delete,keyword.operator.static,keyword.operator.this,keyword.operator.expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"entity.name.type,meta.return.type,meta.type.annotation,meta.type.parameters,support.type.primitive\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"storage,storage.type,storage.modifier,storage.arrow\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"class.instance.constructor,new.expr entity.name.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"support.function, entity.name.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"annotation.meta.ts, annotation.meta.tsx\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"variable.parameter, operator.rest.parameters\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":\\\"variable.property,variable.other.property,variable.other.object.property,variable.object.property,support.variable.property\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"quote.module\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end, entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":\\\"meta.object-literal.key\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"storage.modifier.ts\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"ts.cast.expr,ts.meta.entity.class.method.new.expr.cast,ts.meta.entity.type.name.new.expr.cast,ts.meta.entity.type.name.var-single-variable.annotation,tsx.cast.expr,tsx.meta.entity.class.method.new.expr.cast,tsx.meta.entity.type.name.new.expr.cast,tsx.meta.entity.type.name.var-single-variable.annotation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"ts.meta.type.support,ts.meta.type.entity.name,ts.meta.class.inherited-class,tsx.meta.type.support,tsx.meta.type.entity.name,tsx.meta.class.inherited-class,type-declaration,enum-declaration\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"function-declaration,method-declaration,method-overload-declaration,type-fn-type-parameters\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"comment.block.documentation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"storage.type.class.jsdoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"constant.language.import-export-all\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"objectliteral.key.separator, punctuation.separator.key-value\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\" italic\\\"},\\\"scope\\\":\\\"regex\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"ts.meta.entity.name.namespace,tsx.meta.entity.name.namespace\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"regex.character-class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"entity.name.type.class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"entity.other.inherited-class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"entity.name.type.instance.jsdoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"yaml.entity.name,yaml.string.entity.name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"yaml.string.out\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"meta.brace.square.ts,block.support.module,block.support.type.module,block.support.function.variable,punctuation.definition.typeparameters.begin,punctuation.definition.typeparameters.end\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"punctuation.definition.group.regexp,punctuation.definition.character-class.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"constant.other.character-class.regexp, constant.character.escape.ts\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"expr.regex.or.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"string.template.tag,string.template.punctuation.tag,string.quoted.punctuation.tag,string.quoted.embedded.tag, string.quoted.double.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"tag.punctuation.begin.arrow.parameters.embedded,tag.punctuation.end.arrow.parameters.embedded\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"object-literal.object.member.key.field.other,object-literal.object.member.key.accessor,object-literal.object.member.key.array.brace.square\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A5C261\\\"},\\\"scope\\\":\\\"property-list.property-value,property-list.constant\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"support.type.property-name.variable.css,support.type.property-name.variable.scss,variable.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.class.css,entity.other.attribute-name.class.scss,entity.other.attribute-name.parent-selector-suffix.css,entity.other.attribute-name.parent-selector-suffix.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"property-list.property-value.rgb-value, keyword.other.unit.css,keyword.other.unit.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"property-list.property-value.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A5C261\\\"},\\\"scope\\\":\\\"support.constant.property-value.css,support.constant.property-value.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"css.entity.name.tag,scss.entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"meta.selector.css, entity.attribute-name.id, entity.other.attribute-name.pseudo-class.css,entity.other.attribute-name.pseudo-element.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"keyword.scss,keyword.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"triple-slash.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"token.info-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#cd9731\\\"},\\\"scope\\\":\\\"token.warn-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"token.error-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b267e6\\\"},\\\"scope\\\":\\\"token.debug-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"keyword.operator.logical.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"support.class.dart\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":[\\\"variable.language.php\\\",\\\"variable.other.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":[\\\"variable.other.readwrite.perl\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":[\\\"variable.other.property.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":[\\\"support.variable.property.php\\\"]}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"rokoroku.vscode-theme-darcula\\\",\\\"_extensionIsBuiltin\\\":false,\\\"_extensionName\\\":\\\"vscode-theme-darcula\\\",\\\"_extensionPublisher\\\":\\\"rokoroku\\\"},\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#242424\\\",\\\"editor.foreground\\\":\\\"#cccccc\\\",\\\"editor.selectionBackground\\\":\\\"#204182cc\\\",\\\"editor.lineHighlightBackground\\\":\\\"#ffffff0b\\\",\\\"editor.activeLineNumber.foreground\\\":\\\"#cccccc\\\",\\\"editorGutter.background\\\":\\\"#ffffff0b\\\",\\\"titleBar.activeBackground\\\":\\\"#ffffff1a\\\",\\\"titleBar.inactiveBackground\\\":\\\"#ffffff10\\\",\\\"titleBar.activeForeground\\\":\\\"#cccccc\\\",\\\"sideBar.border\\\":\\\"#ffffff1a\\\",\\\"sideBar.background\\\":\\\"#242424\\\",\\\"statusBar.foreground\\\":\\\"#cccccc\\\",\\\"statusBar.background\\\":\\\"#ffffff1a\\\",\\\"tab.activeBackground\\\":\\\"#ffffff1a\\\",\\\"tab.inactiveBackground\\\":\\\"#ffffff0b\\\",\\\"tab.activeBorder\\\":\\\"#0c7d9d\\\",\\\"editorSuggestWidget.background\\\":\\\"#303030\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#cc6e2f\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#204182cc\\\",\\\"badge.background\\\":\\\"#ffffff1a\\\",\\\"activityBar.background\\\":\\\"#ffffff1a\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\"},\\\"watch\\\":false}\"},\"commandPalette.mru.cache\":{\"version\":1,\"value\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.action.openDefaultKeybindingsFile\\\",\\\"value\\\":1},{\\\"key\\\":\\\"opensshremotes.cleanDevBox\\\",\\\"value\\\":4},{\\\"key\\\":\\\"opensshremotes.addNewSshHost\\\",\\\"value\\\":8},{\\\"key\\\":\\\"sshHosts.focus\\\",\\\"value\\\":9},{\\\"key\\\":\\\"git.sync\\\",\\\"value\\\":12},{\\\"key\\\":\\\"workbench.userData.actions.openSyncBackupsFolder\\\",\\\"value\\\":13},{\\\"key\\\":\\\"workbench.userDataSync.actions.help\\\",\\\"value\\\":16},{\\\"key\\\":\\\"opensshremotes.openConfigFile\\\",\\\"value\\\":21},{\\\"key\\\":\\\"opensshremotes.openEmptyWindow\\\",\\\"value\\\":24},{\\\"key\\\":\\\"peacock.changeColorToFavorite\\\",\\\"value\\\":25},{\\\"key\\\":\\\"extension.resetSettings\\\",\\\"value\\\":37},{\\\"key\\\":\\\"extension.updateSettings\\\",\\\"value\\\":38},{\\\"key\\\":\\\"workbench.action.openGlobalSettings\\\",\\\"value\\\":39}]}\"},\"commandPalette.mru.counter\":{\"version\":1,\"value\":\"40\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Mon Jan 03 2022\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"200\"},\"expandSuggestionDocs\":{\"version\":1,\"value\":\"false\"},\"fileBasedRecommendations/promptedRecommendations\":{\"version\":1,\"value\":\"{\\\"go\\\":[\\\"golang.go\\\"]}\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\",\\\"allowed\\\":true},{\\\"id\\\":\\\"github.copilot\\\",\\\"name\\\":\\\"GitHub Copilot\\\",\\\"allowed\\\":true}]\"},\"hasNotifiedOfSettingsAutosave\":{\"version\":1,\"value\":\"true\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Mon Jan 03 2022\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"200\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"memento/gettingStartedService\":{\"version\":1,\"value\":\"{\\\"settings\\\":{\\\"done\\\":true},\\\"pickColorTheme\\\":{\\\"done\\\":true},\\\"settingsSync\\\":{\\\"done\\\":true},\\\"terminal\\\":{\\\"done\\\":true},\\\"pickAFolderTask-Other\\\":{\\\"done\\\":true},\\\"splitview\\\":{\\\"done\\\":true},\\\"settingsSyncWeb\\\":{\\\"done\\\":true},\\\"installGit\\\":{\\\"done\\\":true},\\\"pickColorThemeWeb\\\":{\\\"done\\\":true}}\"},\"memento/notebookGettingStarted2\":{\"version\":1,\"value\":\"{\\\"hasOpenedNotebook\\\":true}\"},\"memento/workbench.editor.keybindings\":{\"version\":1,\"value\":\"{\\\"searchHistory\\\":[\\\"comm\\\",\\\"@command:workbench.userDataSync.actions.help\\\",\\\"@command:workbench.userData.actions.openSyncBackupsFolder\\\",\\\"@command:workbench.action.openGlobalSettings\\\"]}\"},\"notebook.controller2TypeBindings\":{\"version\":1,\"value\":\"[]\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"false\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Mon Jul 12 2021\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"198\"},\"nps/skipVersion\":{\"version\":1,\"value\":\"1.58.0\"},\"remote.explorerType\":{\"version\":1,\"value\":\"wsl\"},\"remote.tunnels.toRestore.ssh-remote+7b22686f73744e616d65223a224d45524e2d4170702d4157532d454332227d.-1476565221\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"hasRunningProcess\\\":false,\\\"privacy\\\":\\\"ConstantPrivate\\\",\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"}}]\"},\"remote.tunnels.toRestore.ssh-remote+7b22686f73744e616d65223a224d45524e2d4170702d4157532d454332227d.1261358257\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"hasRunningProcess\\\":false,\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"},\\\"privacy\\\":\\\"ConstantPrivate\\\"}]\"},\"remote.tunnels.toRestore.ssh-remote+7b22686f73744e616d65223a224d45524e2d4170702d4157532d454332227d.undefined\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"hasRunningProcess\\\":false,\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"},\\\"privacy\\\":\\\"ConstantPrivate\\\"}]\"},\"remote.tunnels.toRestore.ssh-remote+7b22686f73744e616d65223a224d45524e2d4241434b454e442d46554c4c227d.-1476565221\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"hasRunningProcess\\\":false,\\\"privacy\\\":\\\"ConstantPrivate\\\",\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"}}]\"},\"remote.tunnels.toRestore.ssh-remote+7b22686f73744e616d65223a224d45524e2d46726f6e74656e64227d.1261358257\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"hasRunningProcess\\\":false,\\\"privacy\\\":\\\"ConstantPrivate\\\",\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"}}]\"},\"remote.tunnels.toRestore.ssh-remote+aws-server.1261358257\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"hasRunningProcess\\\":false,\\\"privacy\\\":\\\"ConstantPrivate\\\",\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"}}]\"},\"remote.tunnels.toRestore.wsl+Ubuntu-20.04.-1158253993\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":3000,\\\"localPort\\\":3000,\\\"closeable\\\":true,\\\"localAddress\\\":\\\"localhost:3000\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:3000\\\"},\\\"hasRunningProcess\\\":false,\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"},\\\"privacy\\\":\\\"ConstantPrivate\\\"}]\"},\"remote.tunnels.toRestore.wsl+Ubuntu-20.04.1485246527\":{\"version\":1,\"value\":\"[{\\\"remoteHost\\\":\\\"localhost\\\",\\\"remotePort\\\":52330,\\\"localPort\\\":52330,\\\"closeable\\\":true,\\\"localAddress\\\":\\\"localhost:52330\\\",\\\"protocol\\\":\\\"http\\\",\\\"localUri\\\":{\\\"$mid\\\":1,\\\"path\\\":\\\"/\\\",\\\"scheme\\\":\\\"http\\\",\\\"authority\\\":\\\"localhost:52330\\\"},\\\"hasRunningProcess\\\":false,\\\"source\\\":{\\\"source\\\":0,\\\"description\\\":\\\"Encaminhado pelo Usuário\\\"},\\\"privacy\\\":\\\"private\\\"}]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/.nvm\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/.oh-my-zsh\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_AgriToken/carteira-landing-page-agritoken\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_AgroDataCenter/landing-page-AgroDataCenter\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_Biolabs/landingPage-Biolabs\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_Data_Science/Stack-Bootcamp-de-Data-Science\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_ForestChain/forestchain.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_FutCoin/landing-page-futcoin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_Labs-2021/_FullCycle/FullCycle+Videos\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_WebSites-Templates-Lib\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/___Publics_Repository/Medium-Blogs/Blockchain-Blog/blockchain-gateway\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/___Publics_Repository/My-Data-Science-Journey\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/@@@T4Y-HUB/landingPage-T4Y-HUB\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/_AWS-Amplify-React-Samples/aws-amplify-gatsby-auth\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/_AWS-Amplify-React-Samples/create-react-app-auth-amplify\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/amplify-react-tutorial-project\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/artigo-cognito\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/artigo-cognito-linkedin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/aws-amplify-signup-login-react\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/aws-cognito-artigo-linkedin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/bootcamp-cloud/AULA02/app\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/examples\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/qldb-bicycle-licence-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/qldb-simple-demo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/serverlessdays-web\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v0.1/frontend-autenticacao\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/app-cevada-malte-v1.0\":{\"version\":1,\"value\":\"[\\\"streams-dynmamodb-dev\\\\r\\\\n\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/app-cevada-malte-v1.1\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/frontend-app-cevada-malte-v1.1\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/app-cevada-malte-v1.0\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/cevada-malte.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"css\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/dashboard-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/forestchain-app-backend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/forestchain-app-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/landing-page-forest-chain\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/_GoBarber/cloud-aws\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/_GoBarber/node-deploy\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/_GoBarber/react-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/curso-basico-mern\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/mern-app\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/react-notion-x\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/rodrigo-branas/graphql-presentation\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Labs-2021/rodrigo-branas/web-security-presentation\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_MERN-Projects/mern-app-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_MERN-Projects/mern-app-monorepo\":{\"version\":1,\"value\":\"[\\\"[email protected]\\\",\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_MERN-Projects/rascunho\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_MERN-Projects/teste\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Sites/developer-zone.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Sol-Car.Tk/landingPage-Sol-Car\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Sol-Car.Tk/perpetual-sycamore\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/AppData/Roaming/Code/User\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Biolabs/biolabs-landing-page-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/ESG-Blog\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/LoginCarbonCredit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/SignIn-SignUp\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/carboncredit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/landingPageCarbonCredit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/CustomersAPI\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/aws-codepipeline-codebuild-codecommit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/my-web-app-biolab\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___Testes/material-ui\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___Testes/react-admin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@T4Y-HUB/landingPage-T4Y-HUB\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/dashboard-cevada-malte\":{\"version\":1,\"value\":\"[\\\"ajustes\\\",\\\"John Doe\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/frontend-autenticacao\":{\"version\":1,\"value\":\"[\\\"Ajuste .env\\\",\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/landing-page-agritoken\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@Developer2021/___AWS/curso-aws-pratico-api-90-segundos\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@Developer2021/___AWS/qldb-bicycle-licence-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/OneDrive/___Books/free-programming-books\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/OneDrive/_________________TECONOLOGIAS/___Biblioteca/_GitHub_Repositories/pdfs\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/aws-storage-biolabs-windows10/_ForestChain/forestchain-app-backend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/.nvm\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/.oh-my-zsh\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/Dra_Andrea/landing-page-DraAndrea\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/GoBarber/react-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/Payments-APIs-Apps/paypal-react\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/Payments-APIs-Apps/paypal-react-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AWS_Labs/AWS_SDK/_projects/qldb-nodejs\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AWS_Labs/AWS_SDK/_third-project\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AgriToken/Termo-Privacidade\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AgriToken/appv1.AgriToken.Frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AgriToken/carteira-landing-page-agritoken\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AgriToken/landing-page-agritoken-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AgroDataCenter/agrodatacenter.ga-gateway\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_AgroDataCenter/landing-page-AgroDataCenter\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Biolabs/biolabs-landing-page-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Biolabs/blog-gateway-bioinformaticalabs\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Biolabs/landing-page-biolabs-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Biolabs/landingPage-Biolabs\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/Flex-Token\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/Video_Tutorials\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/carbon-credit-token\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/carbon-credit-token-Hard-Hat\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/carbon-credit-token-Hard-Hat-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/erc20-brownie\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/ethereum-boilerplate\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Blockchain-2022/moralis-react-authentication\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/Landing-Page-Carbon-Credit-2022\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/React/testapp\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/backend-platform.carbon-credit.co\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/backend-platform.carbon-credit.co-v1.0\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/defi-carbon-credit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/investor.carbon-credit.co\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CarbonCredit/platform.carbon-credit.co\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CevadaMalte/_dev-v1.0/frontend-app-cevada-malte-v1.1\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CevadaMalte/appv1.cevadaemalte.com.br/backend-appv1.cevadaemalte.com.br\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CevadaMalte/appv1.cevadaemalte.com.br/frontend-appv1.cevadaemalte.com.br\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Data_Science/Analytics-Vidhya\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Data_Science/Harvestify\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Data_Science/MachineLearning/my-machineLearning-Visualization\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Data_Science/Programacao-Python-Guia-Completo-IA\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Data_Science/Programacao-Python-Guia-Completo-IA/Guia-Completo-IA-01-Python\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Data_Science/Stack-Bootcamp-de-Data-Science\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Developer_Zone/Notion-Express-API-Developer-Zone\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Developer_Zone/developer-zone-backend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Developer_Zone/developer-zone-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Developer_Zone/developer-zone.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Developer_Zone/gatewaty-landing-page-developer-zone.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Express_Cloud/landing-page-express-cloud\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_ForestChain/appv1.forestchain.tk/backend-forestchain\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_ForestChain/appv1.forestchain.tk/frontend-forestchain\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_ForestChain/forestchain.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_ForestChain/gateway-forestchain.com.br\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_ForestChain/landing-page-forest-chain\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_FutCoin/FutCoin-Payment\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_FutCoin/appv1.futcoin.Frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_FutCoin/lancamento-network-dreams-landing-page\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_FutCoin/landing-page-futcoin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/Notion-APIs-Test/Notion-Express-API-Video-Sugestion-Youtube\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/Notion-APIs-Test/Notion-FastiFy-API\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/RocketSeat/API-Node-Cadastro\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/RocketSeat/API-Node-Cadastro-Old-Version\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/RocketSeat/CRUD-node-postgreSQL\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/RocketSeat/EMS-Email-MicroService\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/RocketSeat/umbriel\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/_Firebase/alga-zap\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/_Firebase/marioplan\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/_FullCycle/FullCycle+Videos\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/_FullCycle/payment-gateway\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/_GoBarber/node-deploy\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/_Script_Linux_Github\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/blockchain-demo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/firebase-react2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/kboard\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Labs-2021/notion-api\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_MERN-Projects/mern-app-monorepo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_MeatCoin/landing-page-MeatCoin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Python\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Smart-Mining/landing-page-Smart-Mining\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Smart-Seeds/appv1.smart-seeds.Frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Smart-Seeds/frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Smart-Seeds/landing-page-smart-seeds\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Smart-Seeds/smart-seeds-landing-page\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Smart-Seeds/smartseeds.tk-gateway\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/Go-Lang-Guide\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/NestJS-Guide\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/nestjs-guide\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_T4Y-HUB/landingPage-T4Y-HUB\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_WebSites-Templates-Lib\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/___Publics_Repository/Medium-Blogs/blockchain-gateway\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/___Publics_Repository/Medium-Blogs/blockchain-gateway-1\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/___Publics_Repository/Medium-Blogs/blockchain-zone-demo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/___Publics_Repository/My-Data-Science-Journey\":{\"version\":1,\"value\":\"[\\\"Comitar Apriori Adults\\\",\\\"\\\",\\\"base IA Guide\\\"]\"},\"scm/input:Git:/home/deploy/app/node-deploy\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/backend-appv1.cevadaemalte.com.br\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/deploynode\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/developer-zone-backend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/forestchain-app-backend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/mern-app-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/mern-app-monorepo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/mern-app-monorepo_old\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/mernmern-app-monorepo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/ubuntu/apps/temp/mern-app-monorepo_old\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"tabs-list-width-horizontal\":{\"version\":1,\"value\":\"165\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"terminal.integrated.showTerminalConfigPrompt\":{\"version\":1,\"value\":\"false\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"11\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.test\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.extension.gistpad\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.sqltoolsActivityBarContainer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":14},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":false,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.copilot-sidebar-webview\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.github-cweijan-mysql\\\",\\\"pinned\\\":false,\\\"visible\\\":false,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.github-cweijan-nosql\\\",\\\"pinned\\\":false,\\\"visible\\\":false,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.mongoDB\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"commitViewProvider\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"compareCommitViewProvider\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"name\\\":\\\"Comments\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Pesquisar\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problemas\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Saída\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Console de Depuração\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Visualização da Refatoração\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.terminal\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false}]\"},\"workbench.statusbar.hidden\":{\"version\":1,\"value\":\"[\\\"status.workspaceTrust.f93579476383c84046164709dea7c67c\\\",\\\"status.workspaceTrust.203f353dcf532e98febc2a4fccebec55\\\",\\\"status.workspaceTrust.cc7903fbaf652ee30e2f1110e3667b56\\\",\\\"status.workspaceTrust.32217c615bf9e46e67b858658b845589\\\",\\\"status.workspaceTrust.23c416b7c84c27841484c30f40fb181a\\\",\\\"status.workspaceTrust.66921fb131fad6b696a413bb9f93fd96\\\",\\\"status.workspaceTrust.fbe72b58993baee2402c734a5bbbd20b\\\",\\\"status.workspaceTrust.44406873851352930d254325ff179c91\\\",\\\"status.workspaceTrust.8f59490e6f83d9660493fca8be9b94d5\\\",\\\"status.workspaceTrust.f19946c1c168271aab560153bf1abc27\\\",\\\"status.workspaceTrust.0c86296e97f9ca68ce5bc041a16e2542\\\",\\\"status.workspaceTrust.de28f6a0d47ee3d3aabf1cc8ff554290\\\",\\\"status.workspaceTrust.98d9a1f084d563e1b6b773aa550cca2f\\\",\\\"status.workspaceTrust.70e541f6c3a8c889ae1774175c82dcce\\\",\\\"status.workspaceTrust.50227836e6c22409e98e93794362c0dd\\\",\\\"status.workspaceTrust.6ebb2e4a85cb282542b63057d4d515a4\\\",\\\"status.workspaceTrust.d1a7194bd6ce83a172bbc6f04b46f14f\\\",\\\"status.workspaceTrust.93d2f3b705782b7b1d9aa5a1527956ee\\\",\\\"status.workspaceTrust.aeb737e7b08eea8dc148d02bc8c5525b\\\",\\\"status.workspaceTrust.0661383e5bf52619b49b5a0c879a96f5\\\",\\\"status.workspaceTrust.462873340fd2994d7a44da6632f036a4\\\",\\\"status.workspaceTrust.04bcaa70e447ce8dd00ddec1006bde1c\\\",\\\"status.workspaceTrust.f0dec38d5ecefd62ebe684fb0d5ffb49\\\",\\\"status.workspaceTrust.d3e058ab0ee4f161fa2339999b1cc777\\\",\\\"status.workspaceTrust.c31c6304d27e10be8a186f2ecd8eddfb\\\",\\\"status.workspaceTrust.5e37ce06e7d6f1aec25b79c07590f08e\\\",\\\"status.workspaceTrust.cce2aa80ca875faadcef19de9c0b42f9\\\",\\\"status.workspaceTrust.2274929e06f70aad85908323b9babbcd\\\",\\\"status.workspaceTrust.56c39f44fa61bf2290ec427d99a844f5\\\",\\\"status.workspaceTrust.170d2474e9063259da3fbed04d796ead\\\",\\\"status.workspaceTrust.d6ef5fd28c770eb4264157c1c307ba60\\\",\\\"status.workspaceTrust.e663c5cd9a9a8b38e0c8314677154f35\\\",\\\"status.workspaceTrust.2fb1a251421e17f8350c95fba1c459c1\\\",\\\"status.workspaceTrust.db914c0ef05d98875796cb66bda11237\\\",\\\"status.workspaceTrust.17ddd6a041f23072630baefb67f365d5\\\",\\\"status.workspaceTrust.7c9b4ac05e0778ea11136ef4993ea14e\\\",\\\"status.workspaceTrust.d2c3ddfa4a411720a35d67a7b613664c\\\",\\\"status.workspaceTrust.ffdf249333e29772c598279e892d9f83\\\",\\\"status.workspaceTrust.29bd70dc831cc391a8fe427080ed0ee8\\\",\\\"status.workspaceTrust.9e7b85d758767598be0266e071910799\\\",\\\"status.workspaceTrust.e351c9e0bcba728a55f78cbd3a138694\\\",\\\"status.workspaceTrust.ce24bdcdcd646645d5f566fea6a03cd5\\\",\\\"status.workspaceTrust.eb6e5aa5189bd097bc6f8dd816e25c2b\\\",\\\"status.workspaceTrust.0eeb158606bd1ca4ba53f8618f74920a\\\",\\\"status.workspaceTrust.5264761838fcc5dd1ed4bc354d623091\\\",\\\"status.workspaceTrust.f8ceb84146e83f08c7b453ec673c57ee\\\",\\\"status.workspaceTrust.d91be87972334855ad91e6f30d0f0751\\\",\\\"status.workspaceTrust.60c699a2bef93eb6ac4264af2195a8dc\\\",\\\"status.workspaceTrust.895b103f7afc6902fccfadaec60dcabc\\\",\\\"status.workspaceTrust.f568d042cf5ed3c4f10146467a389563\\\",\\\"status.workspaceTrust.2c26948c40ac1beca2cd2d2bfb081c82\\\",\\\"status.workspaceTrust.cd3696bcddd6ba6ee0de0f9bc58ac4d0\\\",\\\"status.workspaceTrust.69ed1b334a75f4d85465b524dbeae319\\\",\\\"status.workspaceTrust.c0d650e5c92961cdfea354c1e01d6fe3\\\",\\\"status.workspaceTrust.7f5fcdf844a11d060e110ab886536e72\\\",\\\"status.workspaceTrust.6eb20801e089a7bebda28c1d3edb21bf\\\",\\\"status.workspaceTrust.86d7614583c2b52f4893cff697a20ddb\\\",\\\"status.workspaceTrust.e81cee71984cc0afb6c67a8808f99bcc\\\",\\\"status.workspaceTrust.7bd3e7e8debb8c1f669d161b9fe5d1ce\\\",\\\"status.workspaceTrust.0574ce2c8321055efb8f9287c7c484b7\\\",\\\"status.workspaceTrust.016711ea38f88c61866f7b163c541615\\\",\\\"status.workspaceTrust.2b6a771bd819f647a3e9a0e50b2d8df1\\\",\\\"status.workspaceTrust.3371500efd6bda3f0e8fa20b43a549af\\\",\\\"status.workspaceTrust.ab74874c1ae983fc81126b26da290dc2\\\",\\\"status.workspaceTrust.fa2a6fcc6ab16a84268551cc7ca9f4cc\\\",\\\"status.workspaceTrust.e5b390b98e67dbbc142eeaf6a753720d\\\",\\\"status.workspaceTrust.1626302074979\\\",\\\"status.workspaceTrust.c66152f914218a8213377808e9a27cdc\\\",\\\"status.workspaceTrust.7ebc41399f8e2d72841b789d3e2c8639\\\",\\\"status.workspaceTrust.1626311002928\\\",\\\"status.workspaceTrust.1626311235368\\\",\\\"status.workspaceTrust.1626311431629\\\",\\\"status.workspaceTrust.1626311560415\\\",\\\"status.workspaceTrust.1626311581013\\\",\\\"status.workspaceTrust.1626311764813\\\",\\\"status.workspaceTrust.1626312230420\\\",\\\"status.workspaceTrust.1626312328328\\\",\\\"status.workspaceTrust.1626312453614\\\",\\\"status.workspaceTrust.b55eeba04f81df11c9b1e7c29466342a\\\",\\\"status.workspaceTrust.1626312714361\\\",\\\"status.workspaceTrust.a5218a96b577855cf594810491ef1af1\\\",\\\"status.workspaceTrust.1626313448792\\\",\\\"status.workspaceTrust.1626313477462\\\",\\\"status.workspaceTrust.1626314377832\\\",\\\"status.workspaceTrust.1626314494279\\\",\\\"status.workspaceTrust.0fdc5542abbc5dcc3e1a435adfb8c38d\\\",\\\"status.workspaceTrust.1626315569271\\\",\\\"status.workspaceTrust.1626315632821\\\",\\\"status.workspaceTrust.54cc08d5a636a0064e5399afa718e1dc\\\",\\\"status.workspaceTrust.1626316445053\\\",\\\"status.workspaceTrust.1626317315807\\\",\\\"status.workspaceTrust.1626317327642\\\",\\\"status.workspaceTrust.5b1d8f64e02f892dfb3d962e98e8a965\\\",\\\"status.workspaceTrust.1626317394225\\\",\\\"status.workspaceTrust.1626317548094\\\",\\\"status.workspaceTrust.1626317732876\\\",\\\"status.workspaceTrust.1626317867644\\\",\\\"status.workspaceTrust.bed809493e79e0eb568d2e2451676aa7\\\",\\\"status.workspaceTrust.1626318563932\\\",\\\"status.workspaceTrust.1626318678606\\\",\\\"status.workspaceTrust.1626319444538\\\",\\\"status.workspaceTrust.6c0b3a07028494726d0caf07e13f54c5\\\",\\\"status.workspaceTrust.1626319832213\\\",\\\"status.workspaceTrust.1626320473303\\\",\\\"status.workspaceTrust.1626320852325\\\",\\\"status.workspaceTrust.8813a9e0cd3731bf5ac2e2e06a5571e7\\\",\\\"status.workspaceTrust.1626361370437\\\",\\\"status.workspaceTrust.1626361381315\\\",\\\"status.workspaceTrust.1626361558472\\\",\\\"status.workspaceTrust.1626361583399\\\",\\\"status.workspaceTrust.1626361615640\\\",\\\"status.workspaceTrust.496538464c350c27a5aa0e93f06f7e22\\\",\\\"status.workspaceTrust.1626362823274\\\",\\\"status.workspaceTrust.a4a95c9a08b767490a7557eaa71b0518\\\",\\\"status.workspaceTrust.1626362875791\\\",\\\"status.workspaceTrust.1626362887409\\\",\\\"status.workspaceTrust.bf50821638cec0ffa15ac59d377493c7\\\",\\\"status.workspaceTrust.1626364577527\\\",\\\"status.workspaceTrust.1626364693035\\\",\\\"status.workspaceTrust.1626364720847\\\",\\\"status.workspaceTrust.1626364731598\\\",\\\"status.workspaceTrust.1626365693582\\\",\\\"status.workspaceTrust.1626367048994\\\",\\\"status.workspaceTrust.1626367136970\\\",\\\"status.workspaceTrust.bc3a6ba7739f7f07b2a69e7f04834170\\\",\\\"status.workspaceTrust.1626375727721\\\",\\\"status.workspaceTrust.1626375749467\\\",\\\"status.workspaceTrust.1626376932301\\\",\\\"status.workspaceTrust.1626377069575\\\",\\\"status.workspaceTrust.446518839df01d4c000419bddf2052c6\\\",\\\"status.workspaceTrust.1626383102174\\\",\\\"status.workspaceTrust.1626383149879\\\",\\\"status.workspaceTrust.1626385392571\\\",\\\"status.workspaceTrust.1626385906087\\\",\\\"status.workspaceTrust.1626387131288\\\",\\\"status.workspaceTrust.397c3bcf44ff1353435f49f0efb32250\\\",\\\"status.workspaceTrust.1626390039537\\\",\\\"status.workspaceTrust.1626390071307\\\",\\\"status.workspaceTrust.1626390136345\\\",\\\"status.workspaceTrust.1626391025702\\\",\\\"status.workspaceTrust.1626391264181\\\",\\\"status.workspaceTrust.1626394254839\\\",\\\"status.workspaceTrust.1626394271149\\\",\\\"status.workspaceTrust.1626403931619\\\",\\\"status.workspaceTrust.1626403963198\\\",\\\"status.workspaceTrust.1626404057934\\\",\\\"status.workspaceTrust.e400578aada2756d4846750e91f3d3ba\\\",\\\"status.workspaceTrust.1626405768954\\\",\\\"status.workspaceTrust.1626406616944\\\",\\\"status.workspaceTrust.1626406742174\\\",\\\"status.workspaceTrust.1626407456198\\\",\\\"status.workspaceTrust.1626407644083\\\",\\\"status.workspaceTrust.1626408164337\\\",\\\"status.workspaceTrust.6368dfb128b0077660a0c930a8fba93f\\\",\\\"status.workspaceTrust.1626418475304\\\",\\\"status.workspaceTrust.1626418558319\\\",\\\"status.workspaceTrust.b7950e5f4904e58971139f70f3485fe6\\\",\\\"status.workspaceTrust.1626459280470\\\",\\\"status.workspaceTrust.1626461939725\\\",\\\"status.workspaceTrust.1626472212487\\\",\\\"status.workspaceTrust.1626474912967\\\",\\\"status.workspaceTrust.1626474999543\\\",\\\"status.workspaceTrust.1626475183443\\\",\\\"status.workspaceTrust.06551b54ebd38bac43411b1e885307b7\\\",\\\"status.workspaceTrust.1626490924126\\\",\\\"status.workspaceTrust.1626491766395\\\",\\\"status.workspaceTrust.1626491809327\\\",\\\"status.workspaceTrust.1626493100339\\\",\\\"status.workspaceTrust.1626493840754\\\",\\\"status.workspaceTrust.1626501274455\\\",\\\"status.workspaceTrust.1626501381419\\\",\\\"status.workspaceTrust.a613ec082441fb6591cceca00a2643f0\\\",\\\"status.workspaceTrust.1626503883110\\\",\\\"status.workspaceTrust.0d3d3f5484f8281aa4ffed8090c767d6\\\",\\\"status.workspaceTrust.1626507471013\\\",\\\"status.workspaceTrust.1626507492419\\\",\\\"status.workspaceTrust.a6ea9db4f8dd149d9fc78795081a525f\\\",\\\"status.workspaceTrust.1626567785339\\\",\\\"status.workspaceTrust.98781c1b9691f31f26dc0d5e81570165\\\",\\\"status.workspaceTrust.1626568513946\\\",\\\"status.workspaceTrust.1626568917627\\\",\\\"status.workspaceTrust.1626574195277\\\",\\\"status.workspaceTrust.ef6333136b2486ccbef6f8a90f77aa8b\\\",\\\"status.workspaceTrust.dfa437f0b895bbfc15ce97a7c9f50512\\\",\\\"status.workspaceTrust.1626646785590\\\",\\\"status.workspaceTrust.1626646799212\\\",\\\"status.workspaceTrust.1626647447683\\\",\\\"status.workspaceTrust.1626647529385\\\",\\\"status.workspaceTrust.114846107886538bb2ea3f14dc036882\\\",\\\"status.workspaceTrust.1626647596367\\\",\\\"status.workspaceTrust.e98782f1f809bc8811a254833c2a3079\\\",\\\"status.workspaceTrust.1626648158799\\\",\\\"status.workspaceTrust.1626663607122\\\",\\\"status.workspaceTrust.1626663638404\\\",\\\"status.workspaceTrust.0b802f1872523f4c9a146bc17746229d\\\",\\\"status.workspaceTrust.1626664976867\\\",\\\"status.workspaceTrust.1626665325043\\\",\\\"status.workspaceTrust.1626704436736\\\",\\\"status.workspaceTrust.121347b637d51cb90da670b7e4a74c39\\\",\\\"status.workspaceTrust.1c5fa30286134ed663ffcface0d75ef4\\\",\\\"status.workspaceTrust.6bf5e075ebaa312c9254e55716798089\\\",\\\"status.workspaceTrust.1626827449890\\\",\\\"status.workspaceTrust.1626827610429\\\",\\\"status.workspaceTrust.1626827949694\\\",\\\"status.workspaceTrust.1626828019934\\\",\\\"status.workspaceTrust.1626828120177\\\",\\\"status.workspaceTrust.6e8c47a43bc3af55fc4cee780b88dcd2\\\",\\\"status.workspaceTrust.1626868043268\\\",\\\"status.workspaceTrust.c4ea1a63802aab4a94b0b1b236f0e9a6\\\",\\\"status.workspaceTrust.67c14d8eaa417a7ef973e1f3c6d5863f\\\",\\\"status.workspaceTrust.5390c1878618f6b4feb2d23d182009c8\\\",\\\"status.workspaceTrust.7e1cc01f9fcd78858e5c85dbb840d173\\\",\\\"status.workspaceTrust.a3932efb3305ad4f6c94341a482c32a5\\\",\\\"status.workspaceTrust.1626987894910\\\",\\\"status.workspaceTrust.33bcedd03f5c6e6972dcde9ac1fe4b4b\\\",\\\"status.workspaceTrust.1626988553515\\\",\\\"status.workspaceTrust.1626988587450\\\",\\\"status.workspaceTrust.23fbb009709101b05b3a101f4eea34ec\\\",\\\"status.workspaceTrust.fb03428cc80d4ba6199b3797dec4a5ac\\\",\\\"status.workspaceTrust.5e524883e28b6200fc1b92e5cf205266\\\",\\\"status.workspaceTrust.2a49a09d6f05cb10cc444b319436366f\\\",\\\"status.workspaceTrust.8ff70bc95abdf554f3ab94b8aff0390a\\\",\\\"status.workspaceTrust.e65b6eabc6e93ec1c02589dc8f8b0126\\\",\\\"status.workspaceTrust.7a683409ae9822ef2405f469a931792b\\\",\\\"status.workspaceTrust.49205abba4952777f077b065f36a2dd6\\\",\\\"status.workspaceTrust.8b8900736fd1adfe97e63985b7b6df52\\\",\\\"status.workspaceTrust.1627180195384\\\",\\\"status.workspaceTrust.248d3c3bca70d1bdbe6cba42b51c82f9\\\",\\\"status.workspaceTrust.ef5a49618059be0f7dd67d6683008cea\\\",\\\"status.workspaceTrust.a00ac589f47f6c59eff523e3248a628b\\\",\\\"status.workspaceTrust.a75067caf1be1c15ab0b12604a49dc95\\\",\\\"status.workspaceTrust.e990a13c5fdd923de946a6ae29fb073b\\\",\\\"status.workspaceTrust.90db57b6b846551e03383859d5d9b54a\\\",\\\"status.workspaceTrust.1627600642829\\\",\\\"status.workspaceTrust.1627602896166\\\",\\\"status.workspaceTrust.1627615471934\\\",\\\"status.workspaceTrust.590c2f783d72b38c6a0aa1bc0bc534e6\\\",\\\"status.workspaceTrust.3b8131b15131aa0c5e0c26e9f07a3252\\\",\\\"status.workspaceTrust.9ea8bacdd8608ebc3b02456a29a79191\\\",\\\"status.workspaceTrust.1627796487751\\\",\\\"status.workspaceTrust.ca669b243df01056b34368c237d9172e\\\",\\\"status.workspaceTrust.1627797447353\\\",\\\"status.workspaceTrust.1627797483578\\\",\\\"status.workspaceTrust.1627797497473\\\",\\\"status.workspaceTrust.1627797674371\\\",\\\"status.workspaceTrust.1627797734559\\\",\\\"status.workspaceTrust.1627797823923\\\",\\\"status.workspaceTrust.1627798019947\\\",\\\"status.workspaceTrust.1627854521783\\\",\\\"status.workspaceTrust.1627854609314\\\",\\\"status.workspaceTrust.1627855363692\\\",\\\"status.workspaceTrust.1627856376056\\\",\\\"status.workspaceTrust.1627856506003\\\",\\\"status.workspaceTrust.1627864484479\\\",\\\"status.workspaceTrust.1627864588522\\\",\\\"status.workspaceTrust.2fc721e8d3ed05a5e24e0c97027457ad\\\",\\\"status.workspaceTrust.1627865448756\\\",\\\"status.workspaceTrust.1627865487127\\\",\\\"status.workspaceTrust.1627865507249\\\",\\\"status.workspaceTrust.1627866876921\\\",\\\"status.workspaceTrust.1627868825275\\\",\\\"status.workspaceTrust.1628073497993\\\",\\\"status.workspaceTrust.1628073528382\\\",\\\"status.workspaceTrust.eac54b914626819860c2c390c825b857\\\",\\\"status.workspaceTrust.ff09b841013ac842b0a52648ced08568\\\",\\\"status.workspaceTrust.f48e6fb014be13dfe3087b2203b29d72\\\",\\\"status.workspaceTrust.3677733c0543902635fdd7fa071eed9e\\\",\\\"status.workspaceTrust.1330d18b4590440109fe6aaa9305dd0d\\\",\\\"status.workspaceTrust.30e731a48c3d1f719dbd521d6249dcb0\\\",\\\"status.workspaceTrust.9d06db7b2640b2f919ea027024137140\\\",\\\"status.workspaceTrust.1628952602477\\\",\\\"status.workspaceTrust.558b48091dee966645b6efe14c3c919a\\\",\\\"status.workspaceTrust.0b1927929ce7b82311beba04c9684adf\\\",\\\"status.workspaceTrust.9a42242af89648bc49c39f70e4195994\\\",\\\"status.workspaceTrust.e114045e87dc0c11257999fc084fe879\\\",\\\"status.workspaceTrust.f77cdd3129c8eb0f387995ab55fb8960\\\",\\\"status.workspaceTrust.51c15eee4cc67b26fbb165b072f477fc\\\",\\\"status.workspaceTrust.b2b7ea5352df533872096784a8f75c08\\\",\\\"status.workspaceTrust.06c040ec240216841e16d2a0092a5636\\\",\\\"status.workspaceTrust.1d0d446137cfecb99c2c5a918ba99eec\\\",\\\"status.workspaceTrust.c3e0a42d297d44c16d613bf897d6125a\\\",\\\"status.workspaceTrust.d04d41465a4a674bda0ab9cabc374ff4\\\",\\\"status.workspaceTrust.9cf742f05d50a2bd1713726dc48ee8c9\\\",\\\"status.workspaceTrust.d15ab6d0367ac5a67a32b75cbb26149d\\\",\\\"status.workspaceTrust.1629747969152\\\",\\\"status.workspaceTrust.1629748006267\\\",\\\"status.workspaceTrust.b6a78ad8a08e791cf6100439254a0c94\\\",\\\"status.workspaceTrust.bdc1b247cc18c466386364a3055dd1f2\\\",\\\"status.workspaceTrust.da3c9cd41559bb14e0a0192d85e0c277\\\",\\\"status.workspaceTrust.497e0c5fc4e0923143c899822d8b8e69\\\",\\\"status.workspaceTrust.36e69523a824a04a81695edb8479d812\\\",\\\"status.workspaceTrust.e2b01b31921341cb13f77a272d847550\\\",\\\"status.workspaceTrust.42af324bc58d3913f62b43d4d75fc69f\\\",\\\"status.workspaceTrust.d168db042e4e7eb62ad15d8ead51e44e\\\",\\\"status.workspaceTrust.52b385d6a8353236889dbb6ace52f9be\\\",\\\"status.workspaceTrust.d6a4a8114198e536533134789c751dc1\\\",\\\"status.workspaceTrust.03f5814cd54ea466f19c7fb0ea7ea92f\\\",\\\"status.workspaceTrust.065a61d9433198187804314944906284\\\",\\\"status.workspaceTrust.a2fd483df092794f827fcf510dcd9a88\\\",\\\"status.workspaceTrust.1630893720900\\\",\\\"status.workspaceTrust.529d7a717abfe64db3999a788464303e\\\",\\\"status.workspaceTrust.013876164429009c558f86c6786ef055\\\",\\\"status.workspaceTrust.c2638f752eaa3b1e37348f5269c54ebf\\\",\\\"status.workspaceTrust.6c6bb65bd7276c66dc20eef192b6164d\\\",\\\"status.workspaceTrust.201e221e6bc04b01a3c9c58526ca277d\\\",\\\"status.workspaceTrust.4b8713e8bf5c7a04b3dfc5c029d0e1ce\\\",\\\"status.workspaceTrust.1631990052271\\\",\\\"status.workspaceTrust.1631990077044\\\",\\\"status.workspaceTrust.fc4912bb3b90269d072733fa84944752\\\",\\\"status.workspaceTrust.adc7d32e7176f98e99cdd14e390b4ada\\\",\\\"status.workspaceTrust.425347c06411aa4382f7b23e12f17481\\\",\\\"status.workspaceTrust.935833c7cb701f583d56ce8006620dd5\\\",\\\"status.workspaceTrust.e9527e8fd80181dbfa58f088f3497b78\\\",\\\"status.workspaceTrust.1632943296273\\\",\\\"status.workspaceTrust.419affce41daf45f82f85559f7a73735\\\",\\\"status.workspaceTrust.6b5edb3073ea5a91619e641e5c749f56\\\",\\\"status.workspaceTrust.d804f0d81e431744bf301a8bd2df9cf2\\\",\\\"status.workspaceTrust.31150bfe8f0260215e8d00b2e3527d2b\\\",\\\"status.workspaceTrust.88ed6d534ddd291520272efa2195c7c6\\\",\\\"status.workspaceTrust.3d44d32833f6d83c54c387a66a8059d3\\\",\\\"status.workspaceTrust.805116483ff268f9852fe3c1fb18ba19\\\",\\\"status.workspaceTrust.f403bd4184f01e7cd3a4257a9c670130\\\",\\\"status.workspaceTrust.5f521ce33ffd255032db5f7674cccdab\\\",\\\"status.workspaceTrust.68caf1dfabbfece719b57bac6ba0bfdf\\\",\\\"status.workspaceTrust.9d1996b311df952fd317b6d8d9f8ff06\\\",\\\"status.workspaceTrust.f64289852e3d8555b27d2a937c0dd8a3\\\",\\\"status.workspaceTrust.57273af313f7afed43a5930c62245277\\\",\\\"status.workspaceTrust.8740089fed14707b8729e8b2267134fc\\\",\\\"status.workspaceTrust.210e97b7dc692b0e00868ccb56e6cdca\\\",\\\"status.workspaceTrust.f53e1358f86978d127d04476d179171e\\\",\\\"status.workspaceTrust.32b9aa9c51eb3b1828181220960ed36f\\\",\\\"status.workspaceTrust.e8ba739e986cd7a0325e4f16aefeb162\\\",\\\"status.workspaceTrust.5c4ab3afae364c5bf494f4f54ea85b34\\\",\\\"status.workspaceTrust.e6dbb04c2264e7ba076b080a30e8e0b1\\\",\\\"status.workspaceTrust.5de7fe825ed731b72b4ec96fafa7f6d0\\\",\\\"status.workspaceTrust.0bc34c07e21a8ae440a7a73534bb64a8\\\",\\\"status.workspaceTrust.924229c12eff016bebd8830026a0ca53\\\",\\\"status.workspaceTrust.b4bf4033e87b5c1679065f3da7ae05e0\\\",\\\"status.workspaceTrust.15c5c5a6e6e37c8393de293e4535847b\\\",\\\"status.workspaceTrust.27391251e625c99675312c2626666c55\\\",\\\"status.workspaceTrust.2d4ea932812bf14a4e9292fa022b6941\\\",\\\"status.workspaceTrust.0a5434a832ca686c904cca6ece6aef8e\\\",\\\"status.workspaceTrust.281f6ffddbc7f3110fc25a63972d6845\\\",\\\"status.workspaceTrust.344a7434df6e62f0217772acc1459459\\\",\\\"status.workspaceTrust.a9c7207a380a71a1d37ea9a125f67e0f\\\",\\\"status.workspaceTrust.4f0f80c381373853dab8a93aad9b7120\\\",\\\"status.workspaceTrust.1635673051632\\\",\\\"status.workspaceTrust.1635713599353\\\",\\\"status.workspaceTrust.1635713928308\\\",\\\"status.workspaceTrust.1635714054134\\\",\\\"status.workspaceTrust.1635714456472\\\",\\\"status.workspaceTrust.1635714609776\\\",\\\"status.workspaceTrust.1635715165367\\\",\\\"status.workspaceTrust.1635716180224\\\",\\\"status.workspaceTrust.1635722066832\\\",\\\"status.workspaceTrust.1635722346387\\\",\\\"status.workspaceTrust.1635722526241\\\",\\\"status.workspaceTrust.1635722750416\\\",\\\"status.workspaceTrust.1635723153855\\\",\\\"status.workspaceTrust.1635723589995\\\",\\\"status.workspaceTrust.1635724859244\\\",\\\"status.workspaceTrust.1635726660583\\\",\\\"status.workspaceTrust.1635727310268\\\",\\\"status.workspaceTrust.1635727363425\\\",\\\"status.workspaceTrust.1635727425906\\\",\\\"status.workspaceTrust.1635729114002\\\",\\\"status.workspaceTrust.1635733752176\\\",\\\"status.workspaceTrust.3159237eabd555d76d5aa735bec6d38c\\\",\\\"status.workspaceTrust.1635875079350\\\",\\\"status.workspaceTrust.e456cc725d411fb06011c2fa06fcf00f\\\",\\\"status.workspaceTrust.1636000488072\\\",\\\"status.workspaceTrust.1636000816952\\\",\\\"status.workspaceTrust.1636096494593\\\",\\\"status.workspaceTrust.1636096545850\\\",\\\"status.workspaceTrust.1636310098363\\\",\\\"status.workspaceTrust.e52329fd1d9d9083b94b8da9af758939\\\",\\\"status.workspaceTrust.1dca481c05899fe330fe8367a488d8d1\\\",\\\"status.workspaceTrust.346e50eeebf4eacdd15d6706750b7d2a\\\",\\\"status.workspaceTrust.380dd31ebd460f374ca99f5a0e495201\\\",\\\"status.workspaceTrust.bd2225441e521dd3cc40197e29f22c73\\\",\\\"status.workspaceTrust.09066dd40043934ee3fde8d49cfe784a\\\",\\\"status.workspaceTrust.1637031969395\\\",\\\"status.workspaceTrust.1637068241728\\\",\\\"status.workspaceTrust.fdceb912f9184ecb13f9527cf79c072c\\\",\\\"status.workspaceTrust.85bb5f13ed181819ce7bb8513b7e95da\\\",\\\"status.workspaceTrust.3418c350367bca33531c5206db9dfcd3\\\",\\\"status.workspaceTrust.8dcd1a8a6de477f9e549baa3f304d93f\\\",\\\"status.workspaceTrust.1638216162029\\\",\\\"status.workspaceTrust.b66a33e8e7f4c897b5fe186496212930\\\",\\\"status.workspaceTrust.10ee71049de23320dd0d262cecbab530\\\",\\\"status.workspaceTrust.3b6abae0312298ab901e6c8b26a049c8\\\",\\\"status.workspaceTrust.aaefe23e4c925ab51dc241bd30cda841\\\",\\\"status.workspaceTrust.5303e23685e8e62df7481848df3c17c9\\\",\\\"status.workspaceTrust.d457d7d48dc4c66ed013a7e4c4fe515e\\\",\\\"status.workspaceTrust.8086db2fd5a8639e0aee1b6ab0c088fa\\\",\\\"status.workspaceTrust.3d22a9f3012fef19f99d6d106332596f\\\",\\\"status.workspaceTrust.1638754878029\\\",\\\"status.workspaceTrust.1187d437cac9e0bdda50eb51dcdd076f\\\",\\\"status.workspaceTrust.77213ac01f090a8e36ce0652f416e35c\\\",\\\"status.workspaceTrust.a166f465a2fed69f966b5566b94a5202\\\",\\\"status.workspaceTrust.eeb45f1f4efc854d1981749a4c5b8433\\\",\\\"status.workspaceTrust.176248b85bf4aa3fb37ca3f73ae89d41\\\",\\\"status.workspaceTrust.1639142351839\\\",\\\"status.workspaceTrust.1639146136006\\\",\\\"status.workspaceTrust.54ac0dfdcecad4938181f56a0ce9a412\\\",\\\"status.workspaceTrust.1997be2f968d72fd6c5a6debc0455c60\\\",\\\"status.workspaceTrust.99c39694a12a184b00f20c42f2575ddc\\\",\\\"status.workspaceTrust.1639198832704\\\",\\\"status.workspaceTrust.713e1de163a82f11de47f3e1186d5746\\\",\\\"status.workspaceTrust.ba19b23cd9244e6e19d13b9f5665d545\\\",\\\"status.workspaceTrust.1ab4ed7cf1ea348b9202f4861be5e746\\\",\\\"status.workspaceTrust.0c1f51c8cba658f887074dfb2d87fe9e\\\",\\\"status.workspaceTrust.62a100a8631b2427ef3c2944d34130a0\\\",\\\"status.workspaceTrust.83e6b63e8941d0b608539e4ce83324a3\\\",\\\"status.workspaceTrust.8767b93480c988af60acad78f89141ef\\\",\\\"status.workspaceTrust.55024eab8c0da1764418eda4101720e8\\\",\\\"status.workspaceTrust.10300c70e1215f487063cd7a4c0b118e\\\",\\\"status.workspaceTrust.be31643e7125566f781bd4ba9aa36c2d\\\",\\\"status.workspaceTrust.06f6f0cde5b86cd562ad6a21bb3261fc\\\",\\\"status.workspaceTrust.8292eb11c7db373ae3b17574b82afb91\\\",\\\"status.workspaceTrust.b88aff12ed6549fca6bb60ff21557b1d\\\",\\\"status.workspaceTrust.9953cc459c637a34940945b5cf7421a2\\\",\\\"status.workspaceTrust.d2e2f18c0b8d10100cc9bdbb74826b19\\\",\\\"status.workspaceTrust.43ede8708a06a07c3b9012429a557e56\\\",\\\"status.workspaceTrust.8b69f35e6543f21c509e874f13d7db7e\\\",\\\"status.workspaceTrust.712a071c26c0cf4c1ae246a511cf7a16\\\",\\\"status.workspaceTrust.95a08bdd38866c144559b293b0b1f68f\\\",\\\"status.workspaceTrust.3cf7060aebdf9012f7baeea5385af35a\\\",\\\"status.workspaceTrust.cb694c5c5847df380f3dc522cb4f3f13\\\",\\\"status.workspaceTrust.baed01a12524e00f65342f6efb155a2c\\\",\\\"status.workspaceTrust.d8e7ea318bc955f397d45bf4f7de2609\\\",\\\"status.workspaceTrust.b61492565fe082c0930542834dba05ea\\\",\\\"status.workspaceTrust.1640097023151\\\",\\\"status.workspaceTrust.4e7e0f77a371b53f969199dd517b4808\\\",\\\"status.workspaceTrust.7410970dbe8abfcade976d699530464e\\\",\\\"status.workspaceTrust.67df29bfa2ee5c7c68ff48e06f732713\\\",\\\"status.workspaceTrust.31ec3d1fcd8f7cc4e6687106a54fcc50\\\",\\\"status.workspaceTrust.690c888d03996519fcd4ad76865321a8\\\",\\\"status.workspaceTrust.fbfc5c9466362dc0e9a87c64ac77091b\\\",\\\"status.workspaceTrust.e4443f352c745894108b7bd9654006e5\\\",\\\"status.workspaceTrust.b6c1257fa4906f2d5f69049568093951\\\",\\\"status.workspaceTrust.1640552409453\\\",\\\"status.workspaceTrust.d18086513b1fb0679d9ab80e9720df68\\\",\\\"status.workspaceTrust.48e7154593f9970fccaad7813411204b\\\",\\\"status.workspaceTrust.271d07b4b19a510b04bc96470d8bbaf8\\\",\\\"status.workspaceTrust.b9094e4395c238ae116580fbc5cf102c\\\",\\\"status.workspaceTrust.10ee6155a4f0efd41b144b78e08d3c5c\\\",\\\"status.workspaceTrust.356b8fdf366a824c2ac65b386734c20c\\\",\\\"status.workspaceTrust.df4b4de3754f25a1671dad121b3c2c07\\\",\\\"status.workspaceTrust.697ac50e4c32a52ffa6f8b10e3f921b9\\\",\\\"status.workspaceTrust.66c58112f73e88db98875e1334c4749e\\\",\\\"status.workspaceTrust.ad1986e7dc30df09ca6054fcea78ad9d\\\",\\\"status.workspaceTrust.cdb1372fc660b75238eb425b083dc54e\\\",\\\"status.workspaceTrust.1641178078095\\\",\\\"status.workspaceTrust.1641178837291\\\",\\\"status.workspaceTrust.b2bfcbd50327c09530637217e0b1db62\\\",\\\"status.workspaceTrust.8a184c01a3f7491a441c0f720517fdca\\\",\\\"status.workspaceTrust.73c568ccccdc007715d8e5edb30f2dfe\\\",\\\"status.workspaceTrust.910b1a79627782657b3ec4bd2b6d201d\\\",\\\"status.workspaceTrust.0b787f318952b0b9af721b7116219065\\\",\\\"status.workspaceTrust.99cdda36b1b6c2d7f29cf4298079a901\\\"]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"bookmarksHelpAndFeedback\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gistpad.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gistpad.gists\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gistpad.repos\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gistpad.showcase\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.github-cweijan-mysql.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"github.cweijan.mysql\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.github-cweijan-nosql.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"github.cweijan.nosql\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.updates\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.welcome\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.jupyter-variables.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"jupyterViewVariables\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.mongoDB.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"mongoDBConnectionExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"mongoDBPlaygroundsExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"mongoDBHelpExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.sqltoolsActivityBarContainer.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"sqltoolsViewConnectionExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewBookmarksExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewHistoryExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.sqltoolsPanelContainer.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"sqltoolsViewConsoleMessages\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.test.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.testing\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"go.test.profile\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.installed.empty\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchTrustRequired\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.trustRequiredOnStartExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.trustRequiredOnDemandExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed.empty\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed.empty\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"devVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"remoteHub.views.workspaceRepositories\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"},\"workbench.welcomePage.walkthroughMetadata\":{\"version\":1,\"value\":\"[[\\\"ms-vscode-remote.remote-wsl#wslWelcome\\\",{\\\"firstSeen\\\":1641229301431,\\\"stepIDs\\\":[\\\"explore.commands\\\",\\\"open.wslwindow\\\",\\\"create.project\\\",\\\"open.project\\\",\\\"linux.environment\\\",\\\"install.tools\\\",\\\"run.debug\\\",\\\"come.back\\\"],\\\"manaullyOpened\\\":false}]]\"},\"~remote.forwardedPortsContainer.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"~remote.forwardedPorts\\\",\\\"isHidden\\\":false}]\"}}}"} |
This file contains 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
{"version":1,"content":"{\"storage\":{\"Comments.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"isHidden\\\":false}]\"},\"ces/skipSurvey\":{\"version\":1,\"value\":\"1.56.2\"},\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark rokoroku-vscode-theme-darcula-themes-darcula-json\\\",\\\"label\\\":\\\"Darcula\\\",\\\"settingsId\\\":\\\"Darcula\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#707070\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"keyword.operator,keyword.operator.logical,keyword.operator.relational,keyword.operator.assignment,keyword.operator.comparison,keyword.operator.ternary,keyword.operator.arithmetic,keyword.operator.spread\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"string,string.character.escape,string.template.quoted,string.template.quoted.punctuation,string.template.quoted.punctuation.single,string.template.quoted.punctuation.double,string.type.declaration.annotation,string.template.quoted.punctuation.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"punctuation.definition.template-expression.begin,punctuation.definition.template-expression.end\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"expression.string,meta.template.expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"constant.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"constant.language,variable.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":\\\"constant.character, constant.other\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"keyword,keyword.operator.new,keyword.operator.delete,keyword.operator.static,keyword.operator.this,keyword.operator.expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"entity.name.type,meta.return.type,meta.type.annotation,meta.type.parameters,support.type.primitive\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"storage,storage.type,storage.modifier,storage.arrow\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"class.instance.constructor,new.expr entity.name.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"support.function, entity.name.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"annotation.meta.ts, annotation.meta.tsx\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"variable.parameter, operator.rest.parameters\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":\\\"variable.property,variable.other.property,variable.other.object.property,variable.object.property,support.variable.property\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"quote.module\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end, entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":\\\"meta.object-literal.key\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"storage.modifier.ts\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"ts.cast.expr,ts.meta.entity.class.method.new.expr.cast,ts.meta.entity.type.name.new.expr.cast,ts.meta.entity.type.name.var-single-variable.annotation,tsx.cast.expr,tsx.meta.entity.class.method.new.expr.cast,tsx.meta.entity.type.name.new.expr.cast,tsx.meta.entity.type.name.var-single-variable.annotation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"ts.meta.type.support,ts.meta.type.entity.name,ts.meta.class.inherited-class,tsx.meta.type.support,tsx.meta.type.entity.name,tsx.meta.class.inherited-class,type-declaration,enum-declaration\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"function-declaration,method-declaration,method-overload-declaration,type-fn-type-parameters\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"comment.block.documentation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"storage.type.class.jsdoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"constant.language.import-export-all\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"objectliteral.key.separator, punctuation.separator.key-value\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\" italic\\\"},\\\"scope\\\":\\\"regex\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"ts.meta.entity.name.namespace,tsx.meta.entity.name.namespace\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"regex.character-class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"entity.name.type.class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"entity.other.inherited-class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"entity.name.type.instance.jsdoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"yaml.entity.name,yaml.string.entity.name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"yaml.string.out\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"meta.brace.square.ts,block.support.module,block.support.type.module,block.support.function.variable,punctuation.definition.typeparameters.begin,punctuation.definition.typeparameters.end\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"punctuation.definition.group.regexp,punctuation.definition.character-class.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"constant.other.character-class.regexp, constant.character.escape.ts\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"expr.regex.or.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A8759\\\"},\\\"scope\\\":\\\"string.template.tag,string.template.punctuation.tag,string.quoted.punctuation.tag,string.quoted.embedded.tag, string.quoted.double.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"tag.punctuation.begin.arrow.parameters.embedded,tag.punctuation.end.arrow.parameters.embedded\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\"},\\\"scope\\\":\\\"object-literal.object.member.key.field.other,object-literal.object.member.key.accessor,object-literal.object.member.key.array.brace.square\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A5C261\\\"},\\\"scope\\\":\\\"property-list.property-value,property-list.constant\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"support.type.property-name.variable.css,support.type.property-name.variable.scss,variable.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.class.css,entity.other.attribute-name.class.scss,entity.other.attribute-name.parent-selector-suffix.css,entity.other.attribute-name.parent-selector-suffix.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7A9EC2\\\"},\\\"scope\\\":\\\"property-list.property-value.rgb-value, keyword.other.unit.css,keyword.other.unit.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"property-list.property-value.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A5C261\\\"},\\\"scope\\\":\\\"support.constant.property-value.css,support.constant.property-value.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"css.entity.name.tag,scss.entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":\\\"meta.selector.css, entity.attribute-name.id, entity.other.attribute-name.pseudo-class.css,entity.other.attribute-name.pseudo-element.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"keyword.scss,keyword.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CCCCCC\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"triple-slash.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"token.info-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#cd9731\\\"},\\\"scope\\\":\\\"token.warn-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"token.error-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b267e6\\\"},\\\"scope\\\":\\\"token.debug-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"keyword.operator.logical.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":\\\"support.class.dart\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":[\\\"variable.language.php\\\",\\\"variable.other.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9E7BB0\\\"},\\\"scope\\\":[\\\"variable.other.readwrite.perl\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CC8242\\\"},\\\"scope\\\":[\\\"variable.other.property.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFC66D\\\"},\\\"scope\\\":[\\\"support.variable.property.php\\\"]}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"rokoroku.vscode-theme-darcula\\\",\\\"_extensionIsBuiltin\\\":false,\\\"_extensionName\\\":\\\"vscode-theme-darcula\\\",\\\"_extensionPublisher\\\":\\\"rokoroku\\\"},\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#242424\\\",\\\"editor.foreground\\\":\\\"#cccccc\\\",\\\"editor.selectionBackground\\\":\\\"#204182cc\\\",\\\"editor.lineHighlightBackground\\\":\\\"#ffffff0b\\\",\\\"editor.activeLineNumber.foreground\\\":\\\"#cccccc\\\",\\\"editorGutter.background\\\":\\\"#ffffff0b\\\",\\\"titleBar.activeBackground\\\":\\\"#ffffff1a\\\",\\\"titleBar.inactiveBackground\\\":\\\"#ffffff10\\\",\\\"titleBar.activeForeground\\\":\\\"#cccccc\\\",\\\"sideBar.border\\\":\\\"#ffffff1a\\\",\\\"sideBar.background\\\":\\\"#242424\\\",\\\"statusBar.foreground\\\":\\\"#cccccc\\\",\\\"statusBar.background\\\":\\\"#ffffff1a\\\",\\\"tab.activeBackground\\\":\\\"#ffffff1a\\\",\\\"tab.inactiveBackground\\\":\\\"#ffffff0b\\\",\\\"tab.activeBorder\\\":\\\"#0c7d9d\\\",\\\"editorSuggestWidget.background\\\":\\\"#303030\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#cc6e2f\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#204182cc\\\",\\\"badge.background\\\":\\\"#ffffff1a\\\",\\\"activityBar.background\\\":\\\"#ffffff1a\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\"},\\\"watch\\\":false}\"},\"commandPalette.mru.cache\":{\"version\":1,\"value\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.action.openDefaultKeybindingsFile\\\",\\\"value\\\":1},{\\\"key\\\":\\\"workbench.userDataSync.actions.help\\\",\\\"value\\\":3},{\\\"key\\\":\\\"workbench.userDataSync.actions.configure\\\",\\\"value\\\":6},{\\\"key\\\":\\\"git.sync\\\",\\\"value\\\":9},{\\\"key\\\":\\\"extension.HowSettings\\\",\\\"value\\\":11},{\\\"key\\\":\\\"workbench.userData.actions.openSyncBackupsFolder\\\",\\\"value\\\":13}]}\"},\"commandPalette.mru.counter\":{\"version\":1,\"value\":\"14\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Mon Jan 03 2022\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"195\"},\"github-viannaandreBR\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\"}]\"},\"hasNotifiedOfSettingsAutosave\":{\"version\":1,\"value\":\"true\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Mon Jan 03 2022\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"195\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Thu Sep 12 2019\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Fri Sep 13 2019\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"22\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.38.1\"},\"memento/gettingStartedService\":{\"version\":1,\"value\":\"{\\\"pickColorTheme\\\":{\\\"done\\\":true},\\\"settingsSync\\\":{\\\"done\\\":true},\\\"settingsSyncWeb\\\":{\\\"done\\\":true},\\\"installGit\\\":{\\\"done\\\":true},\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true},\\\"settings\\\":{\\\"done\\\":true},\\\"pickColorThemeWeb\\\":{\\\"done\\\":true}}\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"true\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Mon Jan 03 2022\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"195\"},\"remote.explorerType\":{\"version\":1,\"value\":\"wsl\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/.nvm\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/Ubuntu-20.04/home/biolabs/.oh-my-zsh\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/@@@T4Y-HUB/landingPage-T4Y-HUB\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/artigo-cognito\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/artigo-cognito-linkedin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/aws-amplify-signup-login-react\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/aws-cognito-artigo-linkedin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/examples\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/qldb-bicycle-licence-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/qldb-simple-demo\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/serverlessdays-web\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v0.1/frontend-autenticacao\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/app-cevada-malte-v1.0\":{\"version\":1,\"value\":\"[\\\"streams-dynmamodb-dev\\\\r\\\\n\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/app-cevada-malte-v1.1\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/frontend-app-cevada-malte-v1.1\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/app-cevada-malte-v1.0\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/cevada-malte.tk\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"css\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/dashboard-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/landing-page-forest-chain\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Sol-Car.Tk/landingPage-Sol-Car\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/AWS S3 BioLabs/_Sol-Car.Tk/perpetual-sycamore\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/AppData/Roaming/Code/User\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Biolabs/biolabs-landing-page-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/ESG-Blog\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/LoginCarbonCredit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/SignIn-SignUp\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/carboncredit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/landingPageCarbonCredit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/CustomersAPI\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/aws-codepipeline-codebuild-codecommit\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/my-web-app-biolab\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___Testes/material-ui\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___Testes/react-admin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@T4Y-HUB/landingPage-T4Y-HUB\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/dashboard-cevada-malte\":{\"version\":1,\"value\":\"[\\\"ajustes\\\",\\\"John Doe\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/frontend-autenticacao\":{\"version\":1,\"value\":\"[\\\"Ajuste .env\\\",\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/landing-page-cevada-malte\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/landing-page-agritoken\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@Developer2021/___AWS/curso-aws-pratico-api-90-segundos\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@Developer2021/___AWS/qldb-bicycle-licence-v2\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/.nvm\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/.oh-my-zsh\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/GoBarber/react-frontend\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/NestJS-Guide\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"terminal.integrated.showTerminalConfigPrompt\":{\"version\":1,\"value\":\"false\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"11\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Nov 13 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Sep 03 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"99\"},\"typescript.1.skipVersion\":{\"version\":1,\"value\":\"1.48.2\"},\"workbench.activity.pinnedViewlets2\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.test\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.extension.gistpad\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.browser-preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.bookmarks\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.github-cweijan-mysql\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.github-cweijan-nosql\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.copilot-sidebar-webview\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":14},{\\\"id\\\":\\\"workbench.view.extension.mongoDB\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":15},{\\\"id\\\":\\\"workbench.view.extension.sqltoolsActivityBarContainer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":16},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.markers.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.output.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"name\\\":\\\"Comments\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"name\\\":\\\"Pesquisar\\\",\\\"pinned\\\":true,\\\"order\\\":10,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"name\\\":\\\"Problemas\\\",\\\"pinned\\\":true,\\\"order\\\":0,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"name\\\":\\\"Saída\\\",\\\"pinned\\\":true,\\\"order\\\":1,\\\"visible\\\":true},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Console de Depuração\\\",\\\"pinned\\\":true,\\\"order\\\":2,\\\"visible\\\":true},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Visualização da Refatoração\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.terminal\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPanel\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1310204488\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1011446827\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:441411726\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1003584053\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false}]\"},\"workbench.statusbar.hidden\":{\"version\":1,\"value\":\"[\\\"status.workspaceTrust.f93579476383c84046164709dea7c67c\\\",\\\"status.workspaceTrust.203f353dcf532e98febc2a4fccebec55\\\",\\\"status.workspaceTrust.cc7903fbaf652ee30e2f1110e3667b56\\\",\\\"status.workspaceTrust.32217c615bf9e46e67b858658b845589\\\",\\\"status.workspaceTrust.23c416b7c84c27841484c30f40fb181a\\\",\\\"status.workspaceTrust.66921fb131fad6b696a413bb9f93fd96\\\",\\\"status.workspaceTrust.fbe72b58993baee2402c734a5bbbd20b\\\",\\\"status.workspaceTrust.44406873851352930d254325ff179c91\\\",\\\"status.workspaceTrust.8f59490e6f83d9660493fca8be9b94d5\\\",\\\"status.workspaceTrust.f19946c1c168271aab560153bf1abc27\\\",\\\"status.workspaceTrust.0c86296e97f9ca68ce5bc041a16e2542\\\",\\\"status.workspaceTrust.de28f6a0d47ee3d3aabf1cc8ff554290\\\",\\\"status.workspaceTrust.98d9a1f084d563e1b6b773aa550cca2f\\\",\\\"status.workspaceTrust.70e541f6c3a8c889ae1774175c82dcce\\\",\\\"status.workspaceTrust.50227836e6c22409e98e93794362c0dd\\\",\\\"status.workspaceTrust.6ebb2e4a85cb282542b63057d4d515a4\\\",\\\"status.workspaceTrust.d1a7194bd6ce83a172bbc6f04b46f14f\\\",\\\"status.workspaceTrust.93d2f3b705782b7b1d9aa5a1527956ee\\\",\\\"status.workspaceTrust.aeb737e7b08eea8dc148d02bc8c5525b\\\",\\\"status.workspaceTrust.0661383e5bf52619b49b5a0c879a96f5\\\",\\\"status.workspaceTrust.462873340fd2994d7a44da6632f036a4\\\",\\\"status.workspaceTrust.04bcaa70e447ce8dd00ddec1006bde1c\\\",\\\"status.workspaceTrust.f0dec38d5ecefd62ebe684fb0d5ffb49\\\",\\\"status.workspaceTrust.d3e058ab0ee4f161fa2339999b1cc777\\\",\\\"status.workspaceTrust.c31c6304d27e10be8a186f2ecd8eddfb\\\",\\\"status.workspaceTrust.5e37ce06e7d6f1aec25b79c07590f08e\\\",\\\"status.workspaceTrust.cce2aa80ca875faadcef19de9c0b42f9\\\",\\\"status.workspaceTrust.2274929e06f70aad85908323b9babbcd\\\",\\\"status.workspaceTrust.56c39f44fa61bf2290ec427d99a844f5\\\",\\\"status.workspaceTrust.170d2474e9063259da3fbed04d796ead\\\",\\\"status.workspaceTrust.d6ef5fd28c770eb4264157c1c307ba60\\\",\\\"status.workspaceTrust.e663c5cd9a9a8b38e0c8314677154f35\\\",\\\"status.workspaceTrust.2fb1a251421e17f8350c95fba1c459c1\\\",\\\"status.workspaceTrust.db914c0ef05d98875796cb66bda11237\\\",\\\"status.workspaceTrust.17ddd6a041f23072630baefb67f365d5\\\",\\\"status.workspaceTrust.7c9b4ac05e0778ea11136ef4993ea14e\\\",\\\"status.workspaceTrust.d2c3ddfa4a411720a35d67a7b613664c\\\",\\\"status.workspaceTrust.ffdf249333e29772c598279e892d9f83\\\",\\\"status.workspaceTrust.29bd70dc831cc391a8fe427080ed0ee8\\\",\\\"status.workspaceTrust.9e7b85d758767598be0266e071910799\\\",\\\"status.workspaceTrust.e351c9e0bcba728a55f78cbd3a138694\\\",\\\"status.workspaceTrust.ce24bdcdcd646645d5f566fea6a03cd5\\\",\\\"status.workspaceTrust.eb6e5aa5189bd097bc6f8dd816e25c2b\\\",\\\"status.workspaceTrust.0eeb158606bd1ca4ba53f8618f74920a\\\",\\\"status.workspaceTrust.5264761838fcc5dd1ed4bc354d623091\\\",\\\"status.workspaceTrust.f8ceb84146e83f08c7b453ec673c57ee\\\",\\\"status.workspaceTrust.d91be87972334855ad91e6f30d0f0751\\\",\\\"status.workspaceTrust.60c699a2bef93eb6ac4264af2195a8dc\\\",\\\"status.workspaceTrust.895b103f7afc6902fccfadaec60dcabc\\\",\\\"status.workspaceTrust.f568d042cf5ed3c4f10146467a389563\\\",\\\"status.workspaceTrust.2c26948c40ac1beca2cd2d2bfb081c82\\\",\\\"status.workspaceTrust.cd3696bcddd6ba6ee0de0f9bc58ac4d0\\\",\\\"status.workspaceTrust.69ed1b334a75f4d85465b524dbeae319\\\",\\\"status.workspaceTrust.c0d650e5c92961cdfea354c1e01d6fe3\\\",\\\"status.workspaceTrust.aa25a2be1343428389b0051133fff14c\\\",\\\"status.workspaceTrust.5128ab7dc8458d76657b2380f5c5f4b7\\\",\\\"status.workspaceTrust.f34b683c2ac2cbb90cd6e1eaa6595c45\\\",\\\"status.workspaceTrust.cdb1372fc660b75238eb425b083dc54e\\\",\\\"status.workspaceTrust.7e1cc01f9fcd78858e5c85dbb840d173\\\",\\\"status.workspaceTrust.1cadd39a37250ac2b82278858cb2a7f6\\\",\\\"status.workspaceTrust.61f82f7cc9a145d8690e6307ee7969e0\\\",\\\"status.workspaceTrust.d15ab6d0367ac5a67a32b75cbb26149d\\\"]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.bookmarks.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"bookmarksExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"bookmarksHelpAndFeedback\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.browser-preview.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetTree\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gistpad.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gistpad.gists\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gistpad.repos\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gistpad.showcase\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.github-cweijan-mysql.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"github.cweijan.mysql\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.github-cweijan-nosql.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"github.cweijan.nosql\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.repositories:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.compare:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.search:gitlens\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.updates\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.welcome\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.mongoDB.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"mongoDBConnectionExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"mongoDBPlaygroundsExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"mongoDBHelpExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.sqltoolsActivityBarContainer.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"sqltoolsViewConnectionExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewBookmarksExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewHistoryExplorer\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.sqltoolsPanelContainer.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"sqltoolsViewConsoleMessages\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.local.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.remote.outdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.installed.empty\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchTrustRequired\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.trustRequiredOnStartExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.trustRequiredOnDemandExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed.empty\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed.empty\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"devVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"remoteHub.views.workspaceRepositories\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"},\"workbench.welcomePage.walkthroughMetadata\":{\"version\":1,\"value\":\"[[\\\"ms-vscode-remote.remote-wsl#wslWelcome\\\",{\\\"firstSeen\\\":1641249256920,\\\"stepIDs\\\":[\\\"explore.commands\\\",\\\"open.wslwindow\\\",\\\"create.project\\\",\\\"open.project\\\",\\\"linux.environment\\\",\\\"install.tools\\\",\\\"run.debug\\\",\\\"come.back\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-azuretools.vscode-docker#dockerStart\\\",{\\\"firstSeen\\\":1641249307211,\\\"stepIDs\\\":[\\\"openFolder\\\",\\\"openFolderMac\\\",\\\"scaffold\\\",\\\"buildImage\\\",\\\"runContainer\\\",\\\"dockerExplorer\\\",\\\"pushImage\\\",\\\"azDeploy\\\",\\\"learn\\\"],\\\"manaullyOpened\\\":false}]]\"}}}"} |
This file contains 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
{"ref":"5d0ed312-1359-4c9c-82e5-0570f7d37395","content":"{\"version\":1,\"machineId\":\"e89ee9bd-ce11-499b-b1b0-4f38f94454fc\",\"content\":\"{\\\"storage\\\":{\\\"workbench.panel.markers.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.panel.output.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"terminal.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.scm.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript_ES6_BKP\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScript-ES6\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm.mainPanel\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/JavaScriptLabs\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/NodeJSLabs\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactJS-Labs\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_RocketSeat/Cursos/ReactNative-Labs\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/_BlockChain-Labs/Ethereum-Labs\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:Git:file:///c%3A/Users/viann/OneDrive/___________Developer/RocketSeat/Omnistack9.0/AIRCNC\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm.mainPane\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.compare:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.search:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1310204488\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1011446827\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:441411726\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1003584053\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm.repositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.commits\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.branches\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.remotes\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.stashes\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.tags\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.contributors\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.searchAndCompare\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.explorer.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.emptyView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"outline\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.openEditorsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.fileView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"npm\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"timeline\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.compare:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.search:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"sqlite.explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.session.explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.search.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.activity.pinnedViewlets2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.explorer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":0},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":1},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.scm\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":2},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.debug\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":3},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.remote\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extensions\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.test\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":6},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.gistpad\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":9},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.gitlens\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.references-view\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":7},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.browser-preview\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":9},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.bookmarks\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.github-cweijan-mysql\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":12},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.liveshare\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":12},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.dockerView\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":10},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.github-cweijan-nosql\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":13},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.copilot-sidebar-webview\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":14},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.mongoDB\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":15},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.sqltoolsActivityBarContainer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":16},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.sync\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true}]\\\"},\\\"nps/lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Mon Jan 03 2022\\\"},\\\"nps/sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"195\\\"},\\\"workbench.view.debug.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.variablesView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.watchExpressionsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.callStackView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.loadedScriptsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.breakPointsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"jsBrowserBreakpoints\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.statusbar.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"status.workspaceTrust.f93579476383c84046164709dea7c67c\\\\\\\",\\\\\\\"status.workspaceTrust.203f353dcf532e98febc2a4fccebec55\\\\\\\",\\\\\\\"status.workspaceTrust.cc7903fbaf652ee30e2f1110e3667b56\\\\\\\",\\\\\\\"status.workspaceTrust.32217c615bf9e46e67b858658b845589\\\\\\\",\\\\\\\"status.workspaceTrust.23c416b7c84c27841484c30f40fb181a\\\\\\\",\\\\\\\"status.workspaceTrust.66921fb131fad6b696a413bb9f93fd96\\\\\\\",\\\\\\\"status.workspaceTrust.fbe72b58993baee2402c734a5bbbd20b\\\\\\\",\\\\\\\"status.workspaceTrust.44406873851352930d254325ff179c91\\\\\\\",\\\\\\\"status.workspaceTrust.8f59490e6f83d9660493fca8be9b94d5\\\\\\\",\\\\\\\"status.workspaceTrust.f19946c1c168271aab560153bf1abc27\\\\\\\",\\\\\\\"status.workspaceTrust.0c86296e97f9ca68ce5bc041a16e2542\\\\\\\",\\\\\\\"status.workspaceTrust.de28f6a0d47ee3d3aabf1cc8ff554290\\\\\\\",\\\\\\\"status.workspaceTrust.98d9a1f084d563e1b6b773aa550cca2f\\\\\\\",\\\\\\\"status.workspaceTrust.70e541f6c3a8c889ae1774175c82dcce\\\\\\\",\\\\\\\"status.workspaceTrust.50227836e6c22409e98e93794362c0dd\\\\\\\",\\\\\\\"status.workspaceTrust.6ebb2e4a85cb282542b63057d4d515a4\\\\\\\",\\\\\\\"status.workspaceTrust.d1a7194bd6ce83a172bbc6f04b46f14f\\\\\\\",\\\\\\\"status.workspaceTrust.93d2f3b705782b7b1d9aa5a1527956ee\\\\\\\",\\\\\\\"status.workspaceTrust.aeb737e7b08eea8dc148d02bc8c5525b\\\\\\\",\\\\\\\"status.workspaceTrust.0661383e5bf52619b49b5a0c879a96f5\\\\\\\",\\\\\\\"status.workspaceTrust.462873340fd2994d7a44da6632f036a4\\\\\\\",\\\\\\\"status.workspaceTrust.04bcaa70e447ce8dd00ddec1006bde1c\\\\\\\",\\\\\\\"status.workspaceTrust.f0dec38d5ecefd62ebe684fb0d5ffb49\\\\\\\",\\\\\\\"status.workspaceTrust.d3e058ab0ee4f161fa2339999b1cc777\\\\\\\",\\\\\\\"status.workspaceTrust.c31c6304d27e10be8a186f2ecd8eddfb\\\\\\\",\\\\\\\"status.workspaceTrust.5e37ce06e7d6f1aec25b79c07590f08e\\\\\\\",\\\\\\\"status.workspaceTrust.cce2aa80ca875faadcef19de9c0b42f9\\\\\\\",\\\\\\\"status.workspaceTrust.2274929e06f70aad85908323b9babbcd\\\\\\\",\\\\\\\"status.workspaceTrust.56c39f44fa61bf2290ec427d99a844f5\\\\\\\",\\\\\\\"status.workspaceTrust.170d2474e9063259da3fbed04d796ead\\\\\\\",\\\\\\\"status.workspaceTrust.d6ef5fd28c770eb4264157c1c307ba60\\\\\\\",\\\\\\\"status.workspaceTrust.e663c5cd9a9a8b38e0c8314677154f35\\\\\\\",\\\\\\\"status.workspaceTrust.2fb1a251421e17f8350c95fba1c459c1\\\\\\\",\\\\\\\"status.workspaceTrust.db914c0ef05d98875796cb66bda11237\\\\\\\",\\\\\\\"status.workspaceTrust.17ddd6a041f23072630baefb67f365d5\\\\\\\",\\\\\\\"status.workspaceTrust.7c9b4ac05e0778ea11136ef4993ea14e\\\\\\\",\\\\\\\"status.workspaceTrust.d2c3ddfa4a411720a35d67a7b613664c\\\\\\\",\\\\\\\"status.workspaceTrust.ffdf249333e29772c598279e892d9f83\\\\\\\",\\\\\\\"status.workspaceTrust.29bd70dc831cc391a8fe427080ed0ee8\\\\\\\",\\\\\\\"status.workspaceTrust.9e7b85d758767598be0266e071910799\\\\\\\",\\\\\\\"status.workspaceTrust.e351c9e0bcba728a55f78cbd3a138694\\\\\\\",\\\\\\\"status.workspaceTrust.ce24bdcdcd646645d5f566fea6a03cd5\\\\\\\",\\\\\\\"status.workspaceTrust.eb6e5aa5189bd097bc6f8dd816e25c2b\\\\\\\",\\\\\\\"status.workspaceTrust.0eeb158606bd1ca4ba53f8618f74920a\\\\\\\",\\\\\\\"status.workspaceTrust.5264761838fcc5dd1ed4bc354d623091\\\\\\\",\\\\\\\"status.workspaceTrust.f8ceb84146e83f08c7b453ec673c57ee\\\\\\\",\\\\\\\"status.workspaceTrust.d91be87972334855ad91e6f30d0f0751\\\\\\\",\\\\\\\"status.workspaceTrust.60c699a2bef93eb6ac4264af2195a8dc\\\\\\\",\\\\\\\"status.workspaceTrust.895b103f7afc6902fccfadaec60dcabc\\\\\\\",\\\\\\\"status.workspaceTrust.f568d042cf5ed3c4f10146467a389563\\\\\\\",\\\\\\\"status.workspaceTrust.2c26948c40ac1beca2cd2d2bfb081c82\\\\\\\",\\\\\\\"status.workspaceTrust.cd3696bcddd6ba6ee0de0f9bc58ac4d0\\\\\\\",\\\\\\\"status.workspaceTrust.69ed1b334a75f4d85465b524dbeae319\\\\\\\",\\\\\\\"status.workspaceTrust.c0d650e5c92961cdfea354c1e01d6fe3\\\\\\\",\\\\\\\"status.workspaceTrust.aa25a2be1343428389b0051133fff14c\\\\\\\",\\\\\\\"status.workspaceTrust.5128ab7dc8458d76657b2380f5c5f4b7\\\\\\\",\\\\\\\"status.workspaceTrust.f34b683c2ac2cbb90cd6e1eaa6595c45\\\\\\\",\\\\\\\"status.workspaceTrust.cdb1372fc660b75238eb425b083dc54e\\\\\\\",\\\\\\\"status.workspaceTrust.7e1cc01f9fcd78858e5c85dbb840d173\\\\\\\",\\\\\\\"status.workspaceTrust.1cadd39a37250ac2b82278858cb2a7f6\\\\\\\",\\\\\\\"status.workspaceTrust.61f82f7cc9a145d8690e6307ee7969e0\\\\\\\",\\\\\\\"status.workspaceTrust.d15ab6d0367ac5a67a32b75cbb26149d\\\\\\\"]\\\"},\\\"workbench.panel.pinnedPanels\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Terminal\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":3,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.comments\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Comments\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":10,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Pesquisar\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":10,\\\\\\\"visible\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Problemas\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":0,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Saída\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":1,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Console de Depuração\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":2,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"refactorPreview\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Visualização da Refatoração\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false}]\\\"},\\\"cpp.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Wed Jan 05 2022\\\"},\\\"cpp.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"195\\\"},\\\"java.2.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Wed Jan 05 2022\\\"},\\\"java.2.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"195\\\"},\\\"javascript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Sep 13 2019\\\"},\\\"javascript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"22\\\"},\\\"typescript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Thu Sep 03 2020\\\"},\\\"typescript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"99\\\"},\\\"ces/skipSurvey\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.56.2\\\"},\\\"workbench.panel.repl.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"colorThemeData\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"vs-dark vscode-theme-defaults-themes-dark_plus-json\\\\\\\",\\\\\\\"label\\\\\\\":\\\\\\\"Escuro+ (escuro padrão)\\\\\\\",\\\\\\\"settingsId\\\\\\\":\\\\\\\"Default Dark+\\\\\\\",\\\\\\\"themeTokenColors\\\\\\\":[{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#D4D4D4\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.embedded\\\\\\\",\\\\\\\"source.groovy.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"emphasis\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"bold\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"strong\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#000080\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"header\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A9955\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.language\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.numeric\\\\\\\",\\\\\\\"variable.other.enummember\\\\\\\",\\\\\\\"keyword.operator.plus.exponent\\\\\\\",\\\\\\\"keyword.operator.minus.exponent\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#646695\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.tag.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.other.attribute-name.class.css\\\\\\\",\\\\\\\"entity.other.attribute-name.class.mixin.css\\\\\\\",\\\\\\\"entity.other.attribute-name.id.css\\\\\\\",\\\\\\\"entity.other.attribute-name.parent-selector.css\\\\\\\",\\\\\\\"entity.other.attribute-name.pseudo-class.css\\\\\\\",\\\\\\\"entity.other.attribute-name.pseudo-element.css\\\\\\\",\\\\\\\"source.css.less entity.other.attribute-name.id\\\\\\\",\\\\\\\"entity.other.attribute-name.scss\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#f44747\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"underline\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.underline\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"bold\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.bold\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"bold\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.heading\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.italic\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inserted\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.deleted\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.changed\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A9955\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.quote.begin.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6796e6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.list.begin.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inline.raw\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#808080\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.preprocessor\\\\\\\",\\\\\\\"entity.name.function.preprocessor\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.preprocessor.string\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.preprocessor.numeric\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.structure.dictionary.key.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.diff.header\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.type\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"storage.modifier\\\\\\\",\\\\\\\"keyword.operator.noexcept\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"string\\\\\\\",\\\\\\\"meta.embedded.assembly\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d16969\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.template-expression.begin\\\\\\\",\\\\\\\"punctuation.definition.template-expression.end\\\\\\\",\\\\\\\"punctuation.section.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.template.expression\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.vendored.property-name\\\\\\\",\\\\\\\"support.type.property-name\\\\\\\",\\\\\\\"variable.css\\\\\\\",\\\\\\\"variable.scss\\\\\\\",\\\\\\\"variable.other.less\\\\\\\",\\\\\\\"source.coffee.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.control\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.new\\\\\\\",\\\\\\\"keyword.operator.expression\\\\\\\",\\\\\\\"keyword.operator.cast\\\\\\\",\\\\\\\"keyword.operator.sizeof\\\\\\\",\\\\\\\"keyword.operator.alignof\\\\\\\",\\\\\\\"keyword.operator.typeid\\\\\\\",\\\\\\\"keyword.operator.alignas\\\\\\\",\\\\\\\"keyword.operator.instanceof\\\\\\\",\\\\\\\"keyword.operator.logical.python\\\\\\\",\\\\\\\"keyword.operator.wordlike\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.other.unit\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.section.embedded.begin.php\\\\\\\",\\\\\\\"punctuation.section.embedded.end.php\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.function.git-rebase\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.sha.git-rebase\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"storage.modifier.import.java\\\\\\\",\\\\\\\"variable.language.wildcard.java\\\\\\\",\\\\\\\"storage.modifier.package.java\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.language\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#DCDCAA\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.function\\\\\\\",\\\\\\\"support.function\\\\\\\",\\\\\\\"support.constant.handlebars\\\\\\\",\\\\\\\"source.powershell variable.other.member\\\\\\\",\\\\\\\"entity.name.operator.custom-literal\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#4EC9B0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.return-type\\\\\\\",\\\\\\\"support.class\\\\\\\",\\\\\\\"support.type\\\\\\\",\\\\\\\"entity.name.type\\\\\\\",\\\\\\\"entity.name.namespace\\\\\\\",\\\\\\\"entity.other.attribute\\\\\\\",\\\\\\\"entity.name.scope-resolution\\\\\\\",\\\\\\\"entity.name.class\\\\\\\",\\\\\\\"storage.type.numeric.go\\\\\\\",\\\\\\\"storage.type.byte.go\\\\\\\",\\\\\\\"storage.type.boolean.go\\\\\\\",\\\\\\\"storage.type.string.go\\\\\\\",\\\\\\\"storage.type.uintptr.go\\\\\\\",\\\\\\\"storage.type.error.go\\\\\\\",\\\\\\\"storage.type.rune.go\\\\\\\",\\\\\\\"storage.type.cs\\\\\\\",\\\\\\\"storage.type.generic.cs\\\\\\\",\\\\\\\"storage.type.modifier.cs\\\\\\\",\\\\\\\"storage.type.variable.cs\\\\\\\",\\\\\\\"storage.type.annotation.java\\\\\\\",\\\\\\\"storage.type.generic.java\\\\\\\",\\\\\\\"storage.type.java\\\\\\\",\\\\\\\"storage.type.object.array.java\\\\\\\",\\\\\\\"storage.type.primitive.array.java\\\\\\\",\\\\\\\"storage.type.primitive.java\\\\\\\",\\\\\\\"storage.type.token.java\\\\\\\",\\\\\\\"storage.type.groovy\\\\\\\",\\\\\\\"storage.type.annotation.groovy\\\\\\\",\\\\\\\"storage.type.parameters.groovy\\\\\\\",\\\\\\\"storage.type.generic.groovy\\\\\\\",\\\\\\\"storage.type.object.array.groovy\\\\\\\",\\\\\\\"storage.type.primitive.array.groovy\\\\\\\",\\\\\\\"storage.type.primitive.groovy\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#4EC9B0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.type.cast.expr\\\\\\\",\\\\\\\"meta.type.new.expr\\\\\\\",\\\\\\\"support.constant.math\\\\\\\",\\\\\\\"support.constant.dom\\\\\\\",\\\\\\\"support.constant.json\\\\\\\",\\\\\\\"entity.other.inherited-class\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#C586C0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.control\\\\\\\",\\\\\\\"source.cpp keyword.operator.new\\\\\\\",\\\\\\\"keyword.operator.delete\\\\\\\",\\\\\\\"keyword.other.using\\\\\\\",\\\\\\\"keyword.other.operator\\\\\\\",\\\\\\\"entity.name.operator\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9CDCFE\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable\\\\\\\",\\\\\\\"meta.definition.variable.name\\\\\\\",\\\\\\\"support.variable\\\\\\\",\\\\\\\"entity.name.variable\\\\\\\",\\\\\\\"constant.other.placeholder\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#4FC1FF\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.other.constant\\\\\\\",\\\\\\\"variable.other.enummember\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9CDCFE\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.object-literal.key\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CE9178\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.constant.property-value\\\\\\\",\\\\\\\"support.constant.font-name\\\\\\\",\\\\\\\"support.constant.media-type\\\\\\\",\\\\\\\"support.constant.media\\\\\\\",\\\\\\\"constant.other.color.rgb-value\\\\\\\",\\\\\\\"constant.other.rgb-value\\\\\\\",\\\\\\\"support.constant.color\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CE9178\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.group.regexp\\\\\\\",\\\\\\\"punctuation.definition.group.assertion.regexp\\\\\\\",\\\\\\\"punctuation.definition.character-class.regexp\\\\\\\",\\\\\\\"punctuation.character.set.begin.regexp\\\\\\\",\\\\\\\"punctuation.character.set.end.regexp\\\\\\\",\\\\\\\"keyword.operator.negation.regexp\\\\\\\",\\\\\\\"support.other.parenthesis.regexp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d16969\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.character.character-class.regexp\\\\\\\",\\\\\\\"constant.other.character-class.set.regexp\\\\\\\",\\\\\\\"constant.other.character-class.regexp\\\\\\\",\\\\\\\"constant.character.set.regexp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#DCDCAA\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.or.regexp\\\\\\\",\\\\\\\"keyword.control.anchor.regexp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.quantifier.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character.escape\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#C8C8C8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.label\\\\\\\"}],\\\\\\\"semanticTokenRules\\\\\\\":[{\\\\\\\"_selector\\\\\\\":\\\\\\\"newOperator\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"stringLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"customLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"numberLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"newOperator\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#c586c0\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"stringLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"customLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#dcdcaa\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"numberLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}}],\\\\\\\"extensionData\\\\\\\":{\\\\\\\"_extensionId\\\\\\\":\\\\\\\"vscode.theme-defaults\\\\\\\",\\\\\\\"_extensionIsBuiltin\\\\\\\":true,\\\\\\\"_extensionName\\\\\\\":\\\\\\\"theme-defaults\\\\\\\",\\\\\\\"_extensionPublisher\\\\\\\":\\\\\\\"vscode\\\\\\\"},\\\\\\\"themeSemanticHighlighting\\\\\\\":true,\\\\\\\"colorMap\\\\\\\":{\\\\\\\"editor.background\\\\\\\":\\\\\\\"#1e1e1e\\\\\\\",\\\\\\\"editor.foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\",\\\\\\\"editor.inactiveSelectionBackground\\\\\\\":\\\\\\\"#3a3d41\\\\\\\",\\\\\\\"editorIndentGuide.background\\\\\\\":\\\\\\\"#404040\\\\\\\",\\\\\\\"editorIndentGuide.activeBackground\\\\\\\":\\\\\\\"#707070\\\\\\\",\\\\\\\"editor.selectionHighlightBackground\\\\\\\":\\\\\\\"#add6ff26\\\\\\\",\\\\\\\"list.dropBackground\\\\\\\":\\\\\\\"#383b3d\\\\\\\",\\\\\\\"activityBarBadge.background\\\\\\\":\\\\\\\"#007acc\\\\\\\",\\\\\\\"sideBarTitle.foreground\\\\\\\":\\\\\\\"#bbbbbb\\\\\\\",\\\\\\\"input.placeholderForeground\\\\\\\":\\\\\\\"#a6a6a6\\\\\\\",\\\\\\\"menu.background\\\\\\\":\\\\\\\"#252526\\\\\\\",\\\\\\\"menu.foreground\\\\\\\":\\\\\\\"#cccccc\\\\\\\",\\\\\\\"statusBarItem.remoteForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"statusBarItem.remoteBackground\\\\\\\":\\\\\\\"#16825d\\\\\\\",\\\\\\\"ports.iconRunningProcessForeground\\\\\\\":\\\\\\\"#369432\\\\\\\",\\\\\\\"sideBarSectionHeader.background\\\\\\\":\\\\\\\"#00000000\\\\\\\",\\\\\\\"sideBarSectionHeader.border\\\\\\\":\\\\\\\"#cccccc33\\\\\\\",\\\\\\\"tab.lastPinnedBorder\\\\\\\":\\\\\\\"#cccccc33\\\\\\\",\\\\\\\"list.activeSelectionIconForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"watch\\\\\\\":false}\\\"},\\\"workbench.telemetryOptOutShown\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"memento/gettingStartedService\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"pickColorTheme\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settingsSync\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settingsSyncWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"installGit\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"commandPaletteTask\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"commandPaletteTaskWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settings\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"pickColorThemeWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true}}\\\"},\\\"workbench.panel.terminal.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.terminal\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extensions.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.popularExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.enabledExtensionList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.disabledExtensionList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.recommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.listView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.enabledExtensionList2\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.workspaceRecommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.vscode-local.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.otherrecommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.disabledExtensionList2\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInBasicsExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInThemesExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.vscode-local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.vscode-local.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.remote.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.remote.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.remote.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.popular\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.workspaceRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.remote.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.otherRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.marketplace\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchInstalled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchEnabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchDisabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchOutdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchBuiltin\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinFeatureExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinThemeExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.enabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.disabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchTrustRequired\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.trustRequiredOnStartExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.trustRequiredOnDemandExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.local.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.remote.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.remote.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"targetsWsl\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"~remote.helpPanel\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"sshHosts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"targetsContainers\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"detailsContainers\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"devVolumes\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"remoteHub.views.workspaceRepositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"nps/isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"javascript.1.skipVersion\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.38.1\\\"},\\\"javascript.1.isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"javascript.1.editedCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"10\\\"},\\\"javascript.1.editedDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Thu Sep 12 2019\\\"},\\\"typescript.1.editedCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"11\\\"},\\\"typescript.1.editedDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Nov 13 2020\\\"},\\\"workbench.view.extension.browser-preview.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"targetTree\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.liveshare.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.session\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.contacts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.plannedSessions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.help\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.bookmarks.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"bookmarksExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"bookmarksHelpAndFeedback\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.gitlens.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.compare:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.search:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.updates\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"hasNotifiedOfSettingsAutosave\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"typescript.1.skipVersion\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.48.2\\\"},\\\"typescript.1.isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"commandPalette.mru.cache\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"usesLRU\\\\\\\":true,\\\\\\\"entries\\\\\\\":[{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.openDefaultKeybindingsFile\\\\\\\",\\\\\\\"value\\\\\\\":1},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userDataSync.actions.help\\\\\\\",\\\\\\\"value\\\\\\\":3},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userDataSync.actions.configure\\\\\\\",\\\\\\\"value\\\\\\\":6},{\\\\\\\"key\\\\\\\":\\\\\\\"git.sync\\\\\\\",\\\\\\\"value\\\\\\\":9},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.HowSettings\\\\\\\",\\\\\\\"value\\\\\\\":11},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userData.actions.openSyncBackupsFolder\\\\\\\",\\\\\\\"value\\\\\\\":13},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userDataSync.actions.showSyncedData\\\\\\\",\\\\\\\"value\\\\\\\":15}]}\\\"},\\\"commandPalette.mru.counter\\\":{\\\"version\\\":1,\\\"value\\\":\\\"16\\\"},\\\"workbench.view.extension.dockerView.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"dockerContainers\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"dockerImages\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"dockerRegistries\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"dockerNetworks\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"dockerVolumes\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"vscode-docker.views.dockerContexts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"vscode-docker.views.help\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"scm/input:Git:/c:/Users/viann/AppData/Roaming/Code/User\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/LoginCarbonCredit\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/landingPageCarbonCredit\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/ESG-Blog\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/SignIn-SignUp\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CarbonCredit/carboncredit\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/landing-page-agritoken\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Biolabs/biolabs-landing-page-v2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@Developer2021/___AWS/curso-aws-pratico-api-90-segundos\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@Developer2021/___AWS/qldb-bicycle-licence-v2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/CustomersAPI\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/my-web-app-biolab\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@T4Y-HUB/landingPage-T4Y-HUB\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___AWS/aws-codepipeline-codebuild-codecommit\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/landing-page-cevada-malte\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/dashboard-cevada-malte\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"ajustes\\\\\\\",\\\\\\\"John Doe\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@AgriToken/CevadaMalte/frontend-autenticacao\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"Ajuste .env\\\\\\\",\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@CevadaMalte/landing-page-cevada-malte\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___Testes/material-ui\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/viann/Documents/MEGA/@@@Developer2021/___Testes/react-admin\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/@@@T4Y-HUB/landingPage-T4Y-HUB\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_Sol-Car.Tk/perpetual-sycamore\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/qldb-bicycle-licence-v2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_Sol-Car.Tk/landingPage-Sol-Car\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/qldb-simple-demo\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/serverlessdays-web\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/examples\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/app-cevada-malte-v1.0\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/app-cevada-malte-v1.0\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"streams-dynmamodb-dev\\\\\\\\r\\\\\\\\n\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/app-cevada-malte-v1.1\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/landing-page-cevada-malte\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"css\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/artigo-cognito\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v1.0/frontend-app-cevada-malte-v1.1\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/_dev-v0.1/frontend-autenticacao\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/aws-cognito-artigo-linkedin\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/artigo-cognito-linkedin\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_AWS_Labs/aws-amplify-signup-login-react\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"terminal.integrated.showTerminalConfigPrompt\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_CevadaMalte/cevada-malte.tk\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/landing-page-forest-chain\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/AWS S3 BioLabs/_ForestChain/dashboard-cevada-malte\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"workbench.view.extension.github-cweijan-mysql.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"github.cweijan.mysql\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.github-cweijan-nosql.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"github.cweijan.nosql\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.mongoDB.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"mongoDBConnectionExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"mongoDBPlaygroundsExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"mongoDBHelpExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.sqltoolsActivityBarContainer.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"sqltoolsViewConnectionExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"sqltoolsViewBookmarksExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"sqltoolsViewHistoryExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.sqltoolsPanelContainer.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"sqltoolsViewConsoleMessages\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/NestJS-Guide\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/home/biolabs/.nvm\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/home/biolabs/.oh-my-zsh\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/Ubuntu-20.04/home/biolabs/.nvm\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/Ubuntu-20.04/home/biolabs/.oh-my-zsh\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"workbench.view.extension.gistpad.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"gistpad.gists\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gistpad.repos\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gistpad.showcase\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"Comments.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.comments\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.welcomePage.walkthroughMetadata\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[[\\\\\\\"ms-vscode-remote.remote-wsl#wslWelcome\\\\\\\",{\\\\\\\"firstSeen\\\\\\\":1641249256920,\\\\\\\"stepIDs\\\\\\\":[\\\\\\\"explore.commands\\\\\\\",\\\\\\\"open.wslwindow\\\\\\\",\\\\\\\"create.project\\\\\\\",\\\\\\\"open.project\\\\\\\",\\\\\\\"linux.environment\\\\\\\",\\\\\\\"install.tools\\\\\\\",\\\\\\\"run.debug\\\\\\\",\\\\\\\"come.back\\\\\\\"],\\\\\\\"manaullyOpened\\\\\\\":false}],[\\\\\\\"ms-azuretools.vscode-docker#dockerStart\\\\\\\",{\\\\\\\"firstSeen\\\\\\\":1641249307211,\\\\\\\"stepIDs\\\\\\\":[\\\\\\\"openFolder\\\\\\\",\\\\\\\"openFolderMac\\\\\\\",\\\\\\\"scaffold\\\\\\\",\\\\\\\"buildImage\\\\\\\",\\\\\\\"runContainer\\\\\\\",\\\\\\\"dockerExplorer\\\\\\\",\\\\\\\"pushImage\\\\\\\",\\\\\\\"azDeploy\\\\\\\",\\\\\\\"learn\\\\\\\"],\\\\\\\"manaullyOpened\\\\\\\":false}]]\\\"},\\\"scm/input:Git:/home/biolabs/aws-storage-biolabs/GoBarber/react-frontend\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"remote.explorerType\\\":{\\\"version\\\":1,\\\"value\\\":\\\"wsl\\\"},\\\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/NextJS-Guide\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"remote.tunnels.toRestore.wsl+Ubuntu-20.04.-1832380533\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"remoteHost\\\\\\\":\\\\\\\"localhost\\\\\\\",\\\\\\\"remotePort\\\\\\\":3000,\\\\\\\"localPort\\\\\\\":3000,\\\\\\\"closeable\\\\\\\":true,\\\\\\\"localAddress\\\\\\\":\\\\\\\"localhost:3000\\\\\\\",\\\\\\\"protocol\\\\\\\":\\\\\\\"http\\\\\\\",\\\\\\\"localUri\\\\\\\":{\\\\\\\"$mid\\\\\\\":1,\\\\\\\"path\\\\\\\":\\\\\\\"/\\\\\\\",\\\\\\\"scheme\\\\\\\":\\\\\\\"http\\\\\\\",\\\\\\\"authority\\\\\\\":\\\\\\\"localhost:3000\\\\\\\"},\\\\\\\"hasRunningProcess\\\\\\\":false,\\\\\\\"source\\\\\\\":{\\\\\\\"source\\\\\\\":0,\\\\\\\"description\\\\\\\":\\\\\\\"User Forwarded\\\\\\\"},\\\\\\\"privacy\\\\\\\":\\\\\\\"private\\\\\\\"}]\\\"},\\\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/frontend-react-test\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/home/biolabs/aws-storage-biolabs/_Software-Engineering/frontend\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"workbench.view.extension.tabnine-access.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"tabnine-home\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"scm/input:Git:/Ubuntu-20.04/home/biolabs/aws-storage-biolabs/_Software-Engineering/NextJS-Guide\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"workbench.view.sync.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.merges\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.remoteActivity\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.machines\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.localActivity\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.troubleshoot\\\\\\\",\\\\\\\"isHidden\\\\\\\":true}]\\\"},\\\"github-GitLinuxDev\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"eamodio.gitlens\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"GitLens — Git supercharged\\\\\\\",\\\\\\\"allowed\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"vsls-contrib.gistfs\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"GistPad\\\\\\\",\\\\\\\"allowed\\\\\\\":true}]\\\"}}}\"}"} |
This file contains 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
{"ref":"4ad949e7-03d4-4565-8fc7-d3341751ebfd","content":"{\"version\":2,\"machineId\":\"e89ee9bd-ce11-499b-b1b0-4f38f94454fc\",\"content\":\"{\\\"windows\\\":\\\"// Place your key bindings in this file to override the defaultsauto[]\\\\n[\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+t\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"better-phpunit.run\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"win+k win+r\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-better-phpunit.run\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+abnt_c1\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.addCommentLine\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+k ctrl+c\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.addCommentLine\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+'\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.terminal.new\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+k ctrl+u\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.removeCommentLine\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+k ctrl+u\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.removeCommentLine\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+alt+v\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"turboConsoleLog.displayLogMessage\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+alt+l\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-turboConsoleLog.displayLogMessage\\\\\\\"\\\\n }\\\\n]\\\"}\"}","platformSpecific":true} |
This file contains 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
{"version":2,"content":"{\"settings\":\"{\\n \\\"editor.fontSize\\\": 18,\\n \\\"editor.lineHeight\\\": 24,\\n \\\"editor.fontFamily\\\": \\\"Fira Code\\\",\\n \\\"editor.fontLigatures\\\": true,\\n \\n // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes\\n \\\"editor.rulers\\\": [80, 120],\\n \\\"editor.formatOnSave\\\": false,\\n // “prettier.eslintIntegration”: true,\\n\\n \\\"eslint.validate\\\": [\\n \\\"javascript\\\",\\n \\\"javascriptreact\\\",\\n \\\"typescript\\\",\\n \\\"typescriptreact\\\"\\n ],\\n \\n \\\"eslint.formatOnSave\\\": true,\\n \\n \\n // \\\"eslint.autoFixOnSave\\\": true,\\n\\n // \\\"eslint.validate\\\": [\\n // {\\n // \\\"language\\\": \\\"javascript\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"javascriptreact\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"typescript\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"typescriptreact\\\",\\n // \\\"autoFix\\\": true\\n // }\\n // ],\\n \\n // Aplica um sinal visual na esquerda da linha selecionada\\n \\\"editor.renderLineHighlight\\\": \\\"gutter\\\", \\n // Aumenta a fonte do terminal\\n // \\\"terminal.integrated.fontSize\\\": 14,\\n \\n // Define o tema dos ícones na sidebar\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"workbench.startupEditor\\\": \\\"newUntitledFile\\\",\\n \\\"editor.tabSize\\\": 2,\\n \\\"window.zoomLevel\\\": -1,\\n \\\"extensions.ignoreRecommendations\\\": false,\\n \\\"emmet.syntaxProfiles\\\": {\\n \\\"javascript\\\": \\\"jsx\\\",\\n \\\"nunjucks\\\": \\\"html\\\"\\n },\\n \\\"emmet.includeLanguages\\\": {\\n \\\"javascript\\\": \\\"javascriptreact\\\",\\n \\\"nunjucks\\\": \\\"html\\\"\\n },\\n \\\"javascript.updateImportsOnFileMove.enabled\\\": \\\"never\\\",\\n \\\"gitlens.codeLens.recentChange.enabled\\\": false,\\n \\\"gitlens.codeLens.authors.enabled\\\": false,\\n \\\"gitlens.codeLens.enabled\\\": false,\\n \\\"git.enableSmartCommit\\\": true,\\n \\\"editor.parameterHints.enabled\\\": false,\\n \\\"typescript.updateImportsOnFileMove.enabled\\\": \\\"never\\\",\\n // \\\"terminal.integrated.shell.osx\\\": \\\"/bin/zsh\\\",\\n \\\"explorer.confirmDragAndDrop\\\": false,\\n \\\"liveshare.featureSet\\\": \\\"insiders\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\n \\\"typescript.tsserver.log\\\": \\\"verbose\\\",\\n // \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\git-bash.exe\\\",\\n // \\\"terminal.integrated.shellArgs.windows\\\": [\\\"/K\\\", \\\"C:\\\\\\\\tools\\\\\\\\cmder\\\\\\\\vscode.bat\\\"]\\n //\\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\",\\n //\\\"terminal.integrated.env.windows\\\": {\\n // \\\"CMDER_ROOT\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\"},\\n //\\\"terminal.integrated.shellArgs.windows\\\": [\\\"/k\\\",\\n //\\\"%CMDER_ROOT%\\\\\\\\vendor\\\\\\\\bin\\\\\\\\vscode_init.cmd\\\"],\\n \\\"typescript.suggest.autoImports\\\": true,\\n \\\"javascript.suggest.autoImports\\\": true,\\n \\\"liveServer.settings.donotShowInfoMsg\\\": true,\\n \\\"[javascriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"vscode.typescript-language-features\\\"\\n },\\n \\\"editor.renderWhitespace\\\": \\\"none\\\",\\n \\\"editor.minimap.enabled\\\": true,\\n \\\"workbench.editor.showTabs\\\": true,\\n \\\"workbench.editor.enablePreview\\\": false,\\n \\\"workbench.commandPalette.preserveInput\\\": true,\\n \\\"workbench.quickOpen.closeOnFocusLost\\\": true,\\n \\\"workbench.colorCustomizations\\\": {\\n \\n },\\n // {\\n // \\\"code-runner.defaultLanguage\\\": \\\"javascript\\\"\\n // }\\n \\\"material-icon-theme.folders.associations\\\": {\\n \\\"infra\\\": \\\"app\\\",\\n \\\"entities\\\": \\\"class\\\",\\n \\\"schemas\\\": \\\"class\\\",\\n \\\"typeorm\\\": \\\"database\\\",\\n \\\"repositories\\\": \\\"mappings\\\",\\n \\\"http\\\": \\\"container\\\",\\n \\\"modules\\\": \\\"components\\\",\\n \\\"implementations\\\": \\\"core\\\",\\n \\\"dtos\\\": \\\"typescript\\\",\\n \\\"fakes\\\": \\\"mock\\\", \\n \\\"widgets\\\":\\\"compoennts\\\",\\n \\\"front-angular\\\": \\\"font\\\",\\n \\\"migrations\\\": \\\"tools\\\",\\n \\\"front-react\\\":\\\" React-Components\\\",\\n \\\"front-vue\\\":\\\"vue\\\",\\n \\\"store\\\": \\\"Redux-store\\\",\\n \\\"actions\\\": \\\"redux-actions\\\",\\n \\\"reducers\\\": \\\"redux-reducer\\\",\\n },\\n\\n \\\"material-icon-theme.files.associations\\\": {\\n \\\"ormconfig.json\\\": \\\"database\\\",\\n \\\"tsconfig.json\\\": \\\"tune\\\"\\n },\\n \\\"sync.autoDownload\\\": true,\\n \\\"sync.autoUpload\\\": true,\\n \\\"sync.forceUpload\\\": true,\\n \\\"sync.gist\\\": \\\"65f8f7e45008fc9f80d49a532552d391\\\",\\n \\\"browser-preview.startUrl\\\": \\\"http://localhost:8080\\\",\\n \\\"powermode.presets\\\": \\\"flames\\\",\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"code-runner.languageIdToFileExtensionMap\\\": {\\n\\n \\\"bat\\\": \\\".bat\\\",\\n \\\"powershell\\\": \\\".ps1\\\",\\n \\\"typescript\\\": \\\".ts\\\",\\n \\\"javascript\\\": \\\"node\\\",\\n \\\"php\\\": \\\"C:\\\\\\\\php\\\\\\\\php.exe\\\",\\n \\\"python\\\": \\\"python\\\",\\n \\\"perl\\\": \\\"perl\\\",\\n \\\"ruby\\\": \\\"C:\\\\\\\\Ruby23-x64\\\\\\\\bin\\\\\\\\ruby.exe\\\",\\n \\\"go\\\": \\\"go run\\\",\\n \\\"html\\\": \\\"\\\\\\\"C:\\\\\\\\Program Files (x86)\\\\\\\\Google\\\\\\\\Chrome\\\\\\\\Application\\\\\\\\chrome.exe\\\\\\\"\\\",\\n \\\"java\\\": \\\"cd $dir && javac $fileName && java $fileNameWithoutExt\\\",\\n \\\"c\\\": \\\"cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"cpp\\\": \\\"cd $dir && g++ -std=c++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\"\\n },\\n \\\"code-runner.executorMap\\\": {\\n\\n \\\"javascript\\\": \\\"node\\\",\\n \\\"java\\\": \\\"cd $dir && javac $fileName && java $fileNameWithoutExt\\\",\\n \\\"c\\\": \\\"cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"cpp\\\": \\\"cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"objective-c\\\": \\\"cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"php\\\": \\\"php\\\",\\n \\\"python\\\": \\\"python -u\\\",\\n \\\"perl\\\": \\\"perl\\\",\\n \\\"perl6\\\": \\\"perl6\\\",\\n \\\"ruby\\\": \\\"ruby\\\",\\n \\\"go\\\": \\\"go run\\\",\\n \\\"lua\\\": \\\"lua\\\",\\n \\\"groovy\\\": \\\"groovy\\\",\\n \\\"powershell\\\": \\\"powershell -ExecutionPolicy ByPass -File\\\",\\n \\\"bat\\\": \\\"cmd /c\\\",\\n \\\"shellscript\\\": \\\"bash\\\",\\n \\\"fsharp\\\": \\\"fsi\\\",\\n \\\"csharp\\\": \\\"scriptcs\\\",\\n \\\"vbscript\\\": \\\"cscript //Nologo\\\",\\n \\\"typescript\\\": \\\"ts-node\\\",\\n \\\"coffeescript\\\": \\\"coffee\\\",\\n \\\"scala\\\": \\\"scala\\\",\\n \\\"swift\\\": \\\"swift\\\",\\n \\\"julia\\\": \\\"julia\\\",\\n \\\"crystal\\\": \\\"crystal\\\",\\n \\\"ocaml\\\": \\\"ocaml\\\",\\n \\\"r\\\": \\\"Rscript\\\",\\n \\\"applescript\\\": \\\"osascript\\\",\\n \\\"clojure\\\": \\\"lein exec\\\",\\n \\\"haxe\\\": \\\"haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt\\\",\\n \\\"rust\\\": \\\"cd $dir && rustc $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"racket\\\": \\\"racket\\\",\\n \\\"scheme\\\": \\\"csi -script\\\",\\n \\\"ahk\\\": \\\"autohotkey\\\",\\n \\\"autoit\\\": \\\"autoit3\\\",\\n \\\"dart\\\": \\\"dart\\\",\\n \\\"pascal\\\": \\\"cd $dir && fpc $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"d\\\": \\\"cd $dir && dmd $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"haskell\\\": \\\"runhaskell\\\",\\n \\\"nim\\\": \\\"nim compile --verbosity:0 --hints:off --run\\\",\\n \\\"lisp\\\": \\\"sbcl --script\\\",\\n \\\"kit\\\": \\\"kitc --run\\\",\\n \\\"v\\\": \\\"v run\\\",\\n \\\"sass\\\": \\\"sass --style expanded\\\",\\n \\\"scss\\\": \\\"scss --style expanded\\\",\\n \\\"less\\\": \\\"cd $dir && lessc $fileName $fileNameWithoutExt.css\\\"\\n },\\n \\\"terminal.external.windowsExec\\\": \\\"C:\\\\\\\\tools\\\\\\\\cmder\\\\\\\\cmder.exe\\\",\\n \\\"terminal.integrated.automationShell.linux\\\": \\\"\\\",\\n \\\"cmderrunner.cmderlocation\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\",\\n// \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\" \\n // \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\bin\\\\\\\\bash.exe\\\",\\n\\n \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Windows\\\\\\\\system32\\\\\\\\cmd.exe\\\", \\n\\n \\\"terminal.integrated.shellArgs.windows\\\": [\\n \\\"/k %CMDER_ROOT%\\\\\\\\vendor\\\\\\\\init.bat\\\"\\n ],\\n \\\"solidity.enableLocalNodeCompiler\\\": false,\\n \\\"editor.suggestSelection\\\": \\\"first\\\",\\n \\\"vsintellicode.modify.editor.suggestSelection\\\": \\\"automaticallyOverrodeDefaultValue\\\",\\n \\\"workbench.colorTheme\\\": \\\"Visual Studio Dark\\\",\\n \\\"editor.suggest.statusBar.visible\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll.eslint\\\": true\\n },\\n \\\"remote.SSH.configFile\\\": \\\"C:\\\\\\\\Users\\\\\\\\viann\\\\\\\\Documents\\\\\\\\MEGA\\\\\\\\@BootCamp-2021\\\\\\\\nivel05\\\\\\\\cloud-aws\\\\\\\\.ssh\\\\\\\\config\\\"\\n }\"}"} |
This file contains 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
{"version":2,"content":"{\"settings\":\"{\\r\\n}\"}"} |
This file contains 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
{"version":2,"content":"{\"settings\":\"{\\n \\\"editor.fontSize\\\": 18,\\n \\\"editor.lineHeight\\\": 24,\\n \\\"editor.fontFamily\\\": \\\"Fira Code\\\",\\n \\\"editor.fontLigatures\\\": true,\\n \\n // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes\\n \\\"editor.rulers\\\": [80, 120],\\n \\\"editor.formatOnSave\\\": false,\\n // “prettier.eslintIntegration”: true,\\n\\n \\\"eslint.validate\\\": [\\n \\\"javascript\\\",\\n \\\"javascriptreact\\\",\\n \\\"typescript\\\",\\n \\\"typescriptreact\\\"\\n ],\\n \\n \\\"eslint.formatOnSave\\\": true,\\n \\n \\n // \\\"eslint.autoFixOnSave\\\": true,\\n\\n // \\\"eslint.validate\\\": [\\n // {\\n // \\\"language\\\": \\\"javascript\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"javascriptreact\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"typescript\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"typescriptreact\\\",\\n // \\\"autoFix\\\": true\\n // }\\n // ],\\n \\n // Aplica um sinal visual na esquerda da linha selecionada\\n \\\"editor.renderLineHighlight\\\": \\\"gutter\\\", \\n // Aumenta a fonte do terminal\\n // \\\"terminal.integrated.fontSize\\\": 14,\\n \\n // Define o tema dos ícones na sidebar\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"workbench.startupEditor\\\": \\\"newUntitledFile\\\",\\n \\\"editor.tabSize\\\": 2,\\n \\\"window.zoomLevel\\\": -1,\\n \\\"extensions.ignoreRecommendations\\\": false,\\n \\\"emmet.syntaxProfiles\\\": {\\n \\\"javascript\\\": \\\"jsx\\\",\\n \\\"nunjucks\\\": \\\"html\\\"\\n },\\n \\\"emmet.includeLanguages\\\": {\\n \\\"javascript\\\": \\\"javascriptreact\\\",\\n \\\"nunjucks\\\": \\\"html\\\"\\n },\\n \\\"javascript.updateImportsOnFileMove.enabled\\\": \\\"never\\\",\\n \\\"gitlens.codeLens.recentChange.enabled\\\": false,\\n \\\"gitlens.codeLens.authors.enabled\\\": false,\\n \\\"gitlens.codeLens.enabled\\\": false,\\n \\\"git.enableSmartCommit\\\": true,\\n \\\"editor.parameterHints.enabled\\\": false,\\n \\\"typescript.updateImportsOnFileMove.enabled\\\": \\\"never\\\",\\n // \\\"terminal.integrated.shell.osx\\\": \\\"/bin/zsh\\\",\\n \\\"explorer.confirmDragAndDrop\\\": false,\\n \\\"liveshare.featureSet\\\": \\\"insiders\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\n \\\"typescript.tsserver.log\\\": \\\"verbose\\\",\\n // \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\git-bash.exe\\\",\\n // \\\"terminal.integrated.shellArgs.windows\\\": [\\\"/K\\\", \\\"C:\\\\\\\\tools\\\\\\\\cmder\\\\\\\\vscode.bat\\\"]\\n //\\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\",\\n //\\\"terminal.integrated.env.windows\\\": {\\n // \\\"CMDER_ROOT\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\"},\\n //\\\"terminal.integrated.shellArgs.windows\\\": [\\\"/k\\\",\\n //\\\"%CMDER_ROOT%\\\\\\\\vendor\\\\\\\\bin\\\\\\\\vscode_init.cmd\\\"],\\n \\\"typescript.suggest.autoImports\\\": true,\\n \\\"javascript.suggest.autoImports\\\": true,\\n \\\"liveServer.settings.donotShowInfoMsg\\\": true,\\n \\\"[javascriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"vscode.typescript-language-features\\\"\\n },\\n \\\"editor.renderWhitespace\\\": \\\"none\\\",\\n \\\"editor.minimap.enabled\\\": true,\\n \\\"workbench.editor.showTabs\\\": true,\\n \\\"workbench.editor.enablePreview\\\": false,\\n \\\"workbench.commandPalette.preserveInput\\\": true,\\n \\\"workbench.quickOpen.closeOnFocusLost\\\": true,\\n \\\"workbench.colorCustomizations\\\": {\\n \\n },\\n // {\\n // \\\"code-runner.defaultLanguage\\\": \\\"javascript\\\"\\n // }\\n \\\"material-icon-theme.folders.associations\\\": {\\n \\\"infra\\\": \\\"app\\\",\\n \\\"entities\\\": \\\"class\\\",\\n \\\"schemas\\\": \\\"class\\\",\\n \\\"typeorm\\\": \\\"database\\\",\\n \\\"repositories\\\": \\\"mappings\\\",\\n \\\"http\\\": \\\"container\\\",\\n \\\"modules\\\": \\\"components\\\",\\n \\\"implementations\\\": \\\"core\\\",\\n \\\"dtos\\\": \\\"typescript\\\",\\n \\\"fakes\\\": \\\"mock\\\", \\n \\\"widgets\\\":\\\"compoennts\\\",\\n \\\"front-angular\\\": \\\"font\\\",\\n \\\"migrations\\\": \\\"tools\\\",\\n \\\"front-react\\\":\\\" React-Components\\\",\\n \\\"front-vue\\\":\\\"vue\\\",\\n \\\"store\\\": \\\"Redux-store\\\",\\n \\\"actions\\\": \\\"redux-actions\\\",\\n \\\"reducers\\\": \\\"redux-reducer\\\",\\n },\\n\\n \\\"material-icon-theme.files.associations\\\": {\\n \\\"ormconfig.json\\\": \\\"database\\\",\\n \\\"tsconfig.json\\\": \\\"tune\\\"\\n },\\n \\\"sync.autoDownload\\\": true,\\n \\\"sync.autoUpload\\\": true,\\n \\\"sync.forceUpload\\\": true,\\n \\\"sync.gist\\\": \\\"65f8f7e45008fc9f80d49a532552d391\\\",\\n \\\"browser-preview.startUrl\\\": \\\"http://localhost:8080\\\",\\n \\\"powermode.presets\\\": \\\"flames\\\",\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"code-runner.languageIdToFileExtensionMap\\\": {\\n\\n \\\"bat\\\": \\\".bat\\\",\\n \\\"powershell\\\": \\\".ps1\\\",\\n \\\"typescript\\\": \\\".ts\\\",\\n \\\"javascript\\\": \\\"node\\\",\\n \\\"php\\\": \\\"C:\\\\\\\\php\\\\\\\\php.exe\\\",\\n \\\"python\\\": \\\"python\\\",\\n \\\"perl\\\": \\\"perl\\\",\\n \\\"ruby\\\": \\\"C:\\\\\\\\Ruby23-x64\\\\\\\\bin\\\\\\\\ruby.exe\\\",\\n \\\"go\\\": \\\"go run\\\",\\n \\\"html\\\": \\\"\\\\\\\"C:\\\\\\\\Program Files (x86)\\\\\\\\Google\\\\\\\\Chrome\\\\\\\\Application\\\\\\\\chrome.exe\\\\\\\"\\\",\\n \\\"java\\\": \\\"cd $dir && javac $fileName && java $fileNameWithoutExt\\\",\\n \\\"c\\\": \\\"cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"cpp\\\": \\\"cd $dir && g++ -std=c++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\"\\n },\\n \\\"code-runner.executorMap\\\": {\\n\\n \\\"javascript\\\": \\\"node\\\",\\n \\\"java\\\": \\\"cd $dir && javac $fileName && java $fileNameWithoutExt\\\",\\n \\\"c\\\": \\\"cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"cpp\\\": \\\"cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"objective-c\\\": \\\"cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"php\\\": \\\"php\\\",\\n \\\"python\\\": \\\"python -u\\\",\\n \\\"perl\\\": \\\"perl\\\",\\n \\\"perl6\\\": \\\"perl6\\\",\\n \\\"ruby\\\": \\\"ruby\\\",\\n \\\"go\\\": \\\"go run\\\",\\n \\\"lua\\\": \\\"lua\\\",\\n \\\"groovy\\\": \\\"groovy\\\",\\n \\\"powershell\\\": \\\"powershell -ExecutionPolicy ByPass -File\\\",\\n \\\"bat\\\": \\\"cmd /c\\\",\\n \\\"shellscript\\\": \\\"bash\\\",\\n \\\"fsharp\\\": \\\"fsi\\\",\\n \\\"csharp\\\": \\\"scriptcs\\\",\\n \\\"vbscript\\\": \\\"cscript //Nologo\\\",\\n \\\"typescript\\\": \\\"ts-node\\\",\\n \\\"coffeescript\\\": \\\"coffee\\\",\\n \\\"scala\\\": \\\"scala\\\",\\n \\\"swift\\\": \\\"swift\\\",\\n \\\"julia\\\": \\\"julia\\\",\\n \\\"crystal\\\": \\\"crystal\\\",\\n \\\"ocaml\\\": \\\"ocaml\\\",\\n \\\"r\\\": \\\"Rscript\\\",\\n \\\"applescript\\\": \\\"osascript\\\",\\n \\\"clojure\\\": \\\"lein exec\\\",\\n \\\"haxe\\\": \\\"haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt\\\",\\n \\\"rust\\\": \\\"cd $dir && rustc $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"racket\\\": \\\"racket\\\",\\n \\\"scheme\\\": \\\"csi -script\\\",\\n \\\"ahk\\\": \\\"autohotkey\\\",\\n \\\"autoit\\\": \\\"autoit3\\\",\\n \\\"dart\\\": \\\"dart\\\",\\n \\\"pascal\\\": \\\"cd $dir && fpc $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"d\\\": \\\"cd $dir && dmd $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"haskell\\\": \\\"runhaskell\\\",\\n \\\"nim\\\": \\\"nim compile --verbosity:0 --hints:off --run\\\",\\n \\\"lisp\\\": \\\"sbcl --script\\\",\\n \\\"kit\\\": \\\"kitc --run\\\",\\n \\\"v\\\": \\\"v run\\\",\\n \\\"sass\\\": \\\"sass --style expanded\\\",\\n \\\"scss\\\": \\\"scss --style expanded\\\",\\n \\\"less\\\": \\\"cd $dir && lessc $fileName $fileNameWithoutExt.css\\\"\\n },\\n \\\"terminal.external.windowsExec\\\": \\\"C:\\\\\\\\tools\\\\\\\\cmder\\\\\\\\cmder.exe\\\",\\n \\\"terminal.integrated.automationShell.linux\\\": \\\"\\\",\\n \\\"cmderrunner.cmderlocation\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\",\\n// \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\" \\n // \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\bin\\\\\\\\bash.exe\\\",\\n\\n \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Windows\\\\\\\\system32\\\\\\\\cmd.exe\\\", \\n\\n \\\"terminal.integrated.shellArgs.windows\\\": [\\n \\\"/k %CMDER_ROOT%\\\\\\\\vendor\\\\\\\\init.bat\\\"\\n ],\\n \\\"solidity.enableLocalNodeCompiler\\\": false,\\n \\\"editor.suggestSelection\\\": \\\"first\\\",\\n \\\"vsintellicode.modify.editor.suggestSelection\\\": \\\"automaticallyOverrodeDefaultValue\\\",\\n \\\"workbench.colorTheme\\\": \\\"Dracula\\\",\\n \\\"editor.suggest.statusBar.visible\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll.eslint\\\": true\\n },\\n \\\"remote.SSH.configFile\\\": \\\"C:\\\\\\\\Users\\\\\\\\viann\\\\\\\\Documents\\\\\\\\MEGA\\\\\\\\@BootCamp-2021\\\\\\\\nivel05\\\\\\\\cloud-aws\\\\\\\\.ssh\\\\\\\\config\\\"\\n }\"}"} |
This file contains 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
{"version":2,"content":"{\"settings\":\"{\\n \\\"editor.fontSize\\\": 18,\\n \\\"editor.lineHeight\\\": 24,\\n \\\"editor.fontFamily\\\": \\\"Fira Code\\\",\\n \\\"editor.fontLigatures\\\": true,\\n \\n // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes\\n \\\"editor.rulers\\\": [80, 120],\\n \\\"editor.formatOnSave\\\": false,\\n // “prettier.eslintIntegration”: true,\\n\\n \\\"eslint.validate\\\": [\\n \\\"javascript\\\",\\n \\\"javascriptreact\\\",\\n \\\"typescript\\\",\\n \\\"typescriptreact\\\"\\n ],\\n \\n \\\"eslint.formatOnSave\\\": true,\\n \\n \\n // \\\"eslint.autoFixOnSave\\\": true,\\n\\n // \\\"eslint.validate\\\": [\\n // {\\n // \\\"language\\\": \\\"javascript\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"javascriptreact\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"typescript\\\",\\n // \\\"autoFix\\\": true\\n // },\\n // {\\n // \\\"language\\\": \\\"typescriptreact\\\",\\n // \\\"autoFix\\\": true\\n // }\\n // ],\\n \\n // Aplica um sinal visual na esquerda da linha selecionada\\n \\\"editor.renderLineHighlight\\\": \\\"gutter\\\", \\n // Aumenta a fonte do terminal\\n // \\\"terminal.integrated.fontSize\\\": 14,\\n \\n // Define o tema dos ícones na sidebar\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"workbench.startupEditor\\\": \\\"newUntitledFile\\\",\\n \\\"editor.tabSize\\\": 2,\\n \\\"window.zoomLevel\\\": -1,\\n \\\"extensions.ignoreRecommendations\\\": false,\\n \\\"emmet.syntaxProfiles\\\": {\\n \\\"javascript\\\": \\\"jsx\\\",\\n \\\"nunjucks\\\": \\\"html\\\"\\n },\\n \\\"emmet.includeLanguages\\\": {\\n \\\"javascript\\\": \\\"javascriptreact\\\",\\n \\\"nunjucks\\\": \\\"html\\\"\\n },\\n \\\"javascript.updateImportsOnFileMove.enabled\\\": \\\"never\\\",\\n \\\"gitlens.codeLens.recentChange.enabled\\\": false,\\n \\\"gitlens.codeLens.authors.enabled\\\": false,\\n \\\"gitlens.codeLens.enabled\\\": false,\\n \\\"git.enableSmartCommit\\\": true,\\n \\\"editor.parameterHints.enabled\\\": false,\\n \\\"typescript.updateImportsOnFileMove.enabled\\\": \\\"never\\\",\\n // \\\"terminal.integrated.shell.osx\\\": \\\"/bin/zsh\\\",\\n \\\"explorer.confirmDragAndDrop\\\": false,\\n \\\"liveshare.featureSet\\\": \\\"insiders\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\n \\\"typescript.tsserver.log\\\": \\\"verbose\\\",\\n // \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\git-bash.exe\\\",\\n // \\\"terminal.integrated.shellArgs.windows\\\": [\\\"/K\\\", \\\"C:\\\\\\\\tools\\\\\\\\cmder\\\\\\\\vscode.bat\\\"]\\n //\\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\",\\n //\\\"terminal.integrated.env.windows\\\": {\\n // \\\"CMDER_ROOT\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\"},\\n //\\\"terminal.integrated.shellArgs.windows\\\": [\\\"/k\\\",\\n //\\\"%CMDER_ROOT%\\\\\\\\vendor\\\\\\\\bin\\\\\\\\vscode_init.cmd\\\"],\\n \\\"typescript.suggest.autoImports\\\": true,\\n \\\"javascript.suggest.autoImports\\\": true,\\n \\\"liveServer.settings.donotShowInfoMsg\\\": true,\\n \\\"[javascriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"vscode.typescript-language-features\\\"\\n },\\n \\\"editor.renderWhitespace\\\": \\\"none\\\",\\n \\\"editor.minimap.enabled\\\": true,\\n \\\"workbench.editor.showTabs\\\": true,\\n \\\"workbench.editor.enablePreview\\\": false,\\n \\\"workbench.commandPalette.preserveInput\\\": true,\\n \\\"workbench.quickOpen.closeOnFocusLost\\\": true,\\n \\\"workbench.colorCustomizations\\\": {\\n \\n },\\n // {\\n // \\\"code-runner.defaultLanguage\\\": \\\"javascript\\\"\\n // }\\n \\\"material-icon-theme.folders.associations\\\": {\\n \\\"infra\\\": \\\"app\\\",\\n \\\"entities\\\": \\\"class\\\",\\n \\\"schemas\\\": \\\"class\\\",\\n \\\"typeorm\\\": \\\"database\\\",\\n \\\"repositories\\\": \\\"mappings\\\",\\n \\\"http\\\": \\\"container\\\",\\n \\\"modules\\\": \\\"components\\\",\\n \\\"implementations\\\": \\\"core\\\",\\n \\\"dtos\\\": \\\"typescript\\\",\\n \\\"fakes\\\": \\\"mock\\\", \\n \\\"widgets\\\":\\\"compoennts\\\",\\n \\\"front-angular\\\": \\\"font\\\",\\n \\\"migrations\\\": \\\"tools\\\",\\n \\\"front-react\\\":\\\" React-Components\\\",\\n \\\"front-vue\\\":\\\"vue\\\",\\n \\\"store\\\": \\\"Redux-store\\\",\\n \\\"actions\\\": \\\"redux-actions\\\",\\n \\\"reducers\\\": \\\"redux-reducer\\\",\\n },\\n\\n \\\"material-icon-theme.files.associations\\\": {\\n \\\"ormconfig.json\\\": \\\"database\\\",\\n \\\"tsconfig.json\\\": \\\"tune\\\"\\n },\\n \\\"sync.autoDownload\\\": true,\\n \\\"sync.autoUpload\\\": true,\\n \\\"sync.forceUpload\\\": true,\\n \\\"sync.gist\\\": \\\"65f8f7e45008fc9f80d49a532552d391\\\",\\n \\\"browser-preview.startUrl\\\": \\\"http://localhost:8080\\\",\\n \\\"powermode.presets\\\": \\\"flames\\\",\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"code-runner.languageIdToFileExtensionMap\\\": {\\n\\n \\\"bat\\\": \\\".bat\\\",\\n \\\"powershell\\\": \\\".ps1\\\",\\n \\\"typescript\\\": \\\".ts\\\",\\n \\\"javascript\\\": \\\"node\\\",\\n \\\"php\\\": \\\"C:\\\\\\\\php\\\\\\\\php.exe\\\",\\n \\\"python\\\": \\\"python\\\",\\n \\\"perl\\\": \\\"perl\\\",\\n \\\"ruby\\\": \\\"C:\\\\\\\\Ruby23-x64\\\\\\\\bin\\\\\\\\ruby.exe\\\",\\n \\\"go\\\": \\\"go run\\\",\\n \\\"html\\\": \\\"\\\\\\\"C:\\\\\\\\Program Files (x86)\\\\\\\\Google\\\\\\\\Chrome\\\\\\\\Application\\\\\\\\chrome.exe\\\\\\\"\\\",\\n \\\"java\\\": \\\"cd $dir && javac $fileName && java $fileNameWithoutExt\\\",\\n \\\"c\\\": \\\"cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"cpp\\\": \\\"cd $dir && g++ -std=c++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\"\\n },\\n \\\"code-runner.executorMap\\\": {\\n\\n \\\"javascript\\\": \\\"node\\\",\\n \\\"java\\\": \\\"cd $dir && javac $fileName && java $fileNameWithoutExt\\\",\\n \\\"c\\\": \\\"cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"cpp\\\": \\\"cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"objective-c\\\": \\\"cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt\\\",\\n \\\"php\\\": \\\"php\\\",\\n \\\"python\\\": \\\"python -u\\\",\\n \\\"perl\\\": \\\"perl\\\",\\n \\\"perl6\\\": \\\"perl6\\\",\\n \\\"ruby\\\": \\\"ruby\\\",\\n \\\"go\\\": \\\"go run\\\",\\n \\\"lua\\\": \\\"lua\\\",\\n \\\"groovy\\\": \\\"groovy\\\",\\n \\\"powershell\\\": \\\"powershell -ExecutionPolicy ByPass -File\\\",\\n \\\"bat\\\": \\\"cmd /c\\\",\\n \\\"shellscript\\\": \\\"bash\\\",\\n \\\"fsharp\\\": \\\"fsi\\\",\\n \\\"csharp\\\": \\\"scriptcs\\\",\\n \\\"vbscript\\\": \\\"cscript //Nologo\\\",\\n \\\"typescript\\\": \\\"ts-node\\\",\\n \\\"coffeescript\\\": \\\"coffee\\\",\\n \\\"scala\\\": \\\"scala\\\",\\n \\\"swift\\\": \\\"swift\\\",\\n \\\"julia\\\": \\\"julia\\\",\\n \\\"crystal\\\": \\\"crystal\\\",\\n \\\"ocaml\\\": \\\"ocaml\\\",\\n \\\"r\\\": \\\"Rscript\\\",\\n \\\"applescript\\\": \\\"osascript\\\",\\n \\\"clojure\\\": \\\"lein exec\\\",\\n \\\"haxe\\\": \\\"haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt\\\",\\n \\\"rust\\\": \\\"cd $dir && rustc $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"racket\\\": \\\"racket\\\",\\n \\\"scheme\\\": \\\"csi -script\\\",\\n \\\"ahk\\\": \\\"autohotkey\\\",\\n \\\"autoit\\\": \\\"autoit3\\\",\\n \\\"dart\\\": \\\"dart\\\",\\n \\\"pascal\\\": \\\"cd $dir && fpc $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"d\\\": \\\"cd $dir && dmd $fileName && $dir$fileNameWithoutExt\\\",\\n \\\"haskell\\\": \\\"runhaskell\\\",\\n \\\"nim\\\": \\\"nim compile --verbosity:0 --hints:off --run\\\",\\n \\\"lisp\\\": \\\"sbcl --script\\\",\\n \\\"kit\\\": \\\"kitc --run\\\",\\n \\\"v\\\": \\\"v run\\\",\\n \\\"sass\\\": \\\"sass --style expanded\\\",\\n \\\"scss\\\": \\\"scss --style expanded\\\",\\n \\\"less\\\": \\\"cd $dir && lessc $fileName $fileNameWithoutExt.css\\\"\\n },\\n \\\"terminal.external.windowsExec\\\": \\\"C:\\\\\\\\tools\\\\\\\\cmder\\\\\\\\cmder.exe\\\",\\n \\\"terminal.integrated.automationShell.linux\\\": \\\"\\\",\\n \\\"cmderrunner.cmderlocation\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\",\\n// \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\tools\\\\\\\\Cmder\\\\\\\\Cmder.exe\\\" \\n // \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\bin\\\\\\\\bash.exe\\\",\\n\\n \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\Windows\\\\\\\\system32\\\\\\\\cmd.exe\\\", \\n\\n \\\"terminal.integrated.shellArgs.windows\\\": [\\n \\\"/k %CMDER_ROOT%\\\\\\\\vendor\\\\\\\\init.bat\\\"\\n ],\\n \\\"solidity.enableLocalNodeCompiler\\\": false,\\n \\\"editor.suggestSelection\\\": \\\"first\\\",\\n \\\"vsintellicode.modify.editor.suggestSelection\\\": \\\"automaticallyOverrodeDefaultValue\\\",\\n \\\"workbench.colorTheme\\\": \\\"Visual Studio Dark\\\",\\n \\\"editor.suggest.statusBar.visible\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll.eslint\\\": true\\n },\\n \\\"remote.SSH.configFile\\\": \\\"C:\\\\\\\\Users\\\\\\\\viann\\\\\\\\Documents\\\\\\\\MEGA\\\\\\\\@BootCamp-2021\\\\\\\\nivel05\\\\\\\\cloud-aws\\\\\\\\.ssh\\\\\\\\config\\\",\\n \\\"javascript.validate.enable\\\": false\\n }\"}"} |
This file contains 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
{"version":2,"content":"{\"settings\":\"{\\n // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes\\n \\\"editor.rulers\\\": [\\n 80,\\n 120\\n ],\\n // Aplica um sinal visual na esquerda da linha selecionada\\n \\\"editor.renderLineHighlight\\\":\\\"gutter\\\",\\n\\n // Configura tamanho e família da fonte\\n \\\"editor.fontFamily\\\":\\\"Fira Code\\\",\\n \\\"editor.fontLigatures\\\":true,\\n \\n \\n // Define o tema dos ícones na sidebar\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"terminal.integrated.fontSize\\\": 16,\\n \\\"editor.tabSize\\\": 2,\\n \\\"editor.fontSize\\\": 18,\\n \\\"editor.lineHeight\\\": 26,\\n \\\"sync.autoDownload\\\": false,\\n \\\"sync.autoUpload\\\": false,\\n \\\"sync.forceDownload\\\": false,\\n \\\"sync.forceUpload\\\": true,\\n \\\"sync.quietSync\\\": false,\\n \\\"sync.gist\\\": \\\"a13f153ba7283deef1562cf6121f2d8b\\\",\\n \\\"terminal.integrated.shell.windows\\\": \\\"C:\\\\\\\\WINDOWS\\\\\\\\System32\\\\\\\\wsl.exe\\\",\\n \\\"workbench.colorTheme\\\": \\\"Darcula\\\",\\n \\\"editor.suggestSelection\\\": \\\"first\\\",\\n \\\"workbench.editor.showTabs\\\": false,\\n \\\"workbench.action.toggleTabsVisibility\\\": true,\\n \\\"vsintellicode.modify.editor.suggestSelection\\\": \\\"automaticallyOverrodeDefaultValue\\\",\\n \\\"files.autoSave\\\": \\\"onFocusChange\\\",\\n \\\"cSpell.language\\\": \\\"en,pt,pt_BR\\\",\\n \\\"remote.containers.defaultExtensions\\\": [\\n \\\"alefragnani.bookmarks\\\",\\n \\\"bungcip.better-toml\\\",\\n \\\"christian-kohler.path-intellisense\\\",\\n \\\"dbaeumer.vscode-eslint\\\",\\n \\\"donjayamanne.githistory\\\",\\n \\\"esbenp.prettier-vscode\\\",\\n \\\"firsttris.vscode-jest-runner\\\",\\n \\\"hazer.reactcodesnippets\\\",\\n \\\"humao.rest-client\\\",\\n \\\"johnpapa.vscode-peacock\\\",\\n \\\"mikestead.dotenv\\\",\\n \\\"ms-azuretools.vscode-docker\\\",\\n \\\"naumovs.color-highlight\\\",\\n \\\"oderwat.indent-rainbow\\\",\\n \\\"shan.code-settings-sync\\\",\\n \\\"sonarsource.sonarlint-vscode\\\",\\n \\\"steoates.autoimport\\\",\\n \\\"streetsidesoftware.code-spell-checker\\\",\\n \\\"streetsidesoftware.code-spell-checker-portuguese-brazilian\\\",\\n \\\"visualstudioexptteam.vscodeintellicode\\\",\\n \\\"wwm.better-align\\\",\\n \\\"wix.vscode-import-cost\\\",\\n \\\"xyz.local-history\\\",\\n \\\"zignd.html-css-class-completion\\\"\\n ],\\n \\\"docker.containers.sortBy\\\": \\\"CreatedTime\\\",\\n \\\"docker.containers.description\\\": [\\\"ContainerName\\\", \\\"Status\\\"],\\n \\\"php.suggest.basic\\\": false,\\n \\\"[typescriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[typescript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"cSpell.userWords\\\": [\\n \\\"absolutify\\\",\\n \\\"adminsdk\\\",\\n \\\"assetic\\\",\\n \\\"Authenticatable\\\",\\n \\\"chmod\\\",\\n \\\"CHOKIDAR\\\",\\n \\\"Chown\\\",\\n \\\"ciphertext\\\",\\n \\\"cloudbuild\\\",\\n \\\"CLOUDSDK\\\",\\n \\\"clsx\\\",\\n \\\"codeeducation\\\",\\n \\\"codeflix\\\",\\n \\\"codeplatform\\\",\\n \\\"CODIGO\\\",\\n \\\"datasource\\\",\\n \\\"dbdata\\\",\\n \\\"DBNAME\\\",\\n \\\"devexpress\\\",\\n \\\"dockerize\\\",\\n \\\"dotenv\\\",\\n \\\"dpage\\\",\\n \\\"elasticapm\\\",\\n \\\"elasticdata\\\",\\n \\\"entrypoint\\\",\\n \\\"expl\\\",\\n \\\"Grpc\\\",\\n \\\"gserviceaccount\\\",\\n \\\"hookform\\\",\\n \\\"icomoon\\\",\\n \\\"iconmoon\\\",\\n \\\"IUGU\\\",\\n \\\"jboss\\\",\\n \\\"josepy\\\",\\n \\\"Keycloak\\\",\\n \\\"kibana\\\",\\n \\\"kubectl\\\",\\n \\\"LANCAMENTO\\\",\\n \\\"laravel\\\",\\n \\\"linkedin\\\",\\n \\\"mailgun\\\",\\n \\\"mailtrap\\\",\\n \\\"markdownx\\\",\\n \\\"Microservice\\\",\\n \\\"microservices\\\",\\n \\\"MUNICIPIO\\\",\\n \\\"nestjs\\\",\\n \\\"newapp\\\",\\n \\\"newson\\\",\\n \\\"Nfse\\\",\\n \\\"nopassword\\\",\\n \\\"notistack\\\",\\n \\\"oidc\\\",\\n \\\"Omie\\\",\\n \\\"originalname\\\",\\n \\\"PAGARME\\\",\\n \\\"PAPERTRAIL\\\",\\n \\\"persistor\\\",\\n \\\"PGADMIN\\\",\\n \\\"pgsql\\\",\\n \\\"phar\\\",\\n \\\"Phpunit\\\",\\n \\\"POSTGRES\\\",\\n \\\"postgresql\\\",\\n \\\"prebuild\\\",\\n \\\"pytz\\\",\\n \\\"rabbitmq\\\",\\n \\\"reduxsauce\\\",\\n \\\"SASL\\\",\\n \\\"schoolofnet\\\",\\n \\\"scrollbar\\\",\\n \\\"sensio\\\",\\n \\\"smtp\\\",\\n \\\"sonassets\\\",\\n \\\"SONBOT\\\",\\n \\\"sonplatform\\\",\\n \\\"sortedm\\\",\\n \\\"Spotify\\\",\\n \\\"stylesheets\\\",\\n \\\"typeorm\\\",\\n \\\"Unprocessable\\\",\\n \\\"Unstyled\\\",\\n \\\"USEPOLLING\\\",\\n \\\"uuidv\\\",\\n \\\"varchar\\\",\\n \\\"VERCEL\\\",\\n \\\"websockets\\\",\\n \\\"XDEBUG\\\"\\n ],\\n \\\"terminal.integrated.copyOnSelection\\\": true,\\n \\\"auto-close-tag.disableOnLanguage\\\": [\\n\\n \\n \\\"[typescript]\\\"],\\n \\\"cloudcode.gke\\\": {\\n \\\"projectIds\\\": [\\\"vscode-test-285612\\\"]\\n },\\n \\\"vs-kubernetes\\\": {\\n \\\"vs-kubernetes.helm-path.linux\\\": \\\"/home/argen/.vs-kubernetes/tools/helm/linux-amd64/helm\\\",\\n \\\"vs-kubernetes.draft-path.linux\\\": \\\"/home/argen/.vs-kubernetes/tools/draft/linux-amd64/draft\\\",\\n \\\"vs-kubernetes.minikube-path.linux\\\": \\\"/home/argen/.vs-kubernetes/tools/minikube/linux-amd64/minikube\\\",\\n \\\"vscode-kubernetes.minikube-path.linux\\\": \\\"/home/argen/.vs-kubernetes/tools/minikube/linux-amd64/minikube\\\",\\n \\\"vscode-kubernetes.helm-path.linux\\\": \\\"/home/argen/.vs-kubernetes/tools/helm/linux-amd64/helm\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[yaml]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"files.exclude\\\": {\\n \\\"**/__pycache__\\\": true,\\n \\\"**/.history\\\": true,\\n \\\"**/*.pyc\\\": true\\n },\\n \\\"git.autofetch\\\": true,\\n \\\"terminal.external.windowsExec\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\git-bash.exe\\\",\\n \\\"terminal.integrated.automationShell.windows\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\git-bash.exe\\\",\\n \\\"sshfs.configs\\\": [\\n {\\n \\\"name\\\": \\\"unnamed\\\"\\n }\\n ],\\n \\\"remote.SSH.showLoginTerminal\\\": true,\\n \\\"remote.SSH.path\\\": \\\"C:\\\\\\\\Program Files\\\\\\\\Git\\\\\\\\usr\\\\\\\\bin\\\\\\\\ssh.exe\\\",\\n \\\"peacock.favoriteColors\\\": [\\n {\\n \\\"name\\\": \\\"Angular\\\",\\n \\\"value\\\": \\\"#a6120d\\\"\\n },\\n {\\n \\\"name\\\": \\\"Angular Red\\\",\\n \\\"value\\\": \\\"#dd0531\\\"\\n },\\n {\\n \\\"name\\\": \\\"Apache Kafka\\\",\\n \\\"value\\\": \\\"#000000\\\"\\n },\\n {\\n \\\"name\\\": \\\"Azure Blue\\\",\\n \\\"value\\\": \\\"#007fff\\\"\\n },\\n {\\n \\\"name\\\": \\\"Django\\\",\\n \\\"value\\\": \\\"#0C4B33\\\"\\n },\\n {\\n \\\"name\\\": \\\"Golang\\\",\\n \\\"value\\\": \\\"#007d9c\\\"\\n },\\n {\\n \\\"name\\\": \\\"JavaScript Yellow\\\",\\n \\\"value\\\": \\\"#f9e64f\\\"\\n },\\n {\\n \\\"name\\\": \\\"Keycloak\\\",\\n \\\"value\\\": \\\"#39a5dc\\\"\\n },\\n {\\n \\\"name\\\": \\\"Laravel\\\",\\n \\\"value\\\": \\\"#fb503b\\\"\\n },\\n {\\n \\\"name\\\": \\\"Loopback\\\",\\n \\\"value\\\": \\\"#3f5dff\\\"\\n },\\n {\\n \\\"name\\\": \\\"Mandalorian Blue\\\",\\n \\\"value\\\": \\\"#1857a4\\\"\\n },\\n {\\n \\\"name\\\": \\\"Nest.js\\\",\\n \\\"value\\\": \\\"#e0234e\\\"\\n },\\n {\\n \\\"name\\\": \\\"Node Green\\\",\\n \\\"value\\\": \\\"#215732\\\"\\n },\\n {\\n \\\"name\\\": \\\"React Blue\\\",\\n \\\"value\\\": \\\"#61dafb\\\"\\n },\\n {\\n \\\"name\\\": \\\"Something Different\\\",\\n \\\"value\\\": \\\"#832561\\\"\\n },\\n {\\n \\\"name\\\": \\\"Svelte Orange\\\",\\n \\\"value\\\": \\\"#ff3d00\\\"\\n },\\n {\\n \\\"name\\\": \\\"Vue Green\\\",\\n \\\"value\\\": \\\"#42b883\\\"\\n },\\n {\\n \\\"name\\\": \\\"RabbitMQ\\\",\\n \\\"value\\\": \\\"#f60\\\"\\n },\\n {\\n \\\"name\\\": \\\"TypeScript\\\",\\n \\\"value\\\": \\\"#007acc\\\"\\n }\\n ],\\n\\\"peacock.elementAdjustments\\\": {\\n \\\"statusBar\\\": \\\"lighten\\\",\\n \\\"titleBar\\\": \\\"lighten\\\"\\n},\\n\\\"terminal.integrated.shell.linux\\\": \\\"/bin/zsh\\\",\\n\\\"remote.SSH.remotePlatform\\\": {\\n \\\"192.168.1.53\\\": \\\"linux\\\"\\n},\\n\\\"[json]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"vscode.json-language-features\\\"\\n},\\n\\\"[jsonc]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"vscode.json-language-features\\\"\\n},\\n\\\"peacock.darkForegroundColor\\\": \\\"\\\",\\n\\\"[php]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"bmewburn.vscode-intelephense-client\\\"\\n},\\n\\\"php-cs-fixer.executablePath\\\": \\\"${extensionPath}/php-cs-fixer.phar\\\",\\n\\\"php-cs-fixer.lastDownload\\\": 1605347483003,\\n\\\"editor.mouseWheelZoom\\\": true,\\n\\\"conventionalCommits.lineBreak\\\": \\\"\\\\\\\\n\\\",\\n\\\"git.suggestSmartCommit\\\": false,\\n\\\"[scss]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n},\\n\\\"workbench.editor.wrapTabs\\\": true,\\n\\\"workbench.editor.decorations.badges\\\": true,\\n\\\"workbench.editor.decorations.colors\\\": true,\\n\\\"screencastMode.onlyKeyboardShortcuts\\\": true,\\n\\\"indentRainbow.colors\\\": [\\n \\\"rgba(255,255,64,0.07)\\\",\\n \\\"rgba(127,255,127,0.07)\\\",\\n \\\"rgba(255,127,255,0.07)\\\",\\n \\\"rgba(79,236,236,0.07)\\\"\\n],\\n\\\"[twig]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"mblode.twig-language-2\\\"\\n},\\n\\\"workbench.colorCustomizations\\\": {\\n \\\"gitDecoration.untrackedResourceForeground\\\": \\\"#ff6666\\\",\\n \\\"gitDecoration.modifiedResourceForeground\\\": \\\"#89aeff\\\"\\n},\\n\\\"workbench.editorAssociations\\\": {\\n \\\"*.ipynb\\\": \\\"jupyter-notebook\\\"\\n},\\n\\\"editor.inlineHints.fontFamily\\\": \\\"\\\\\\\"JetBrains Mono\\\\\\\", Consolas, 'Courier New', monospace\\\",\\n// \\\"editor.fontFamily\\\": \\\"\\\\\\\"JetBrains Mono\\\\\\\", Consolas, 'Courier New', monospace\\\",\\n\\\"[xml]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"mblode.pretty-formatter\\\"\\n},\\n\\\"auto-close-tag.activationOnLanguage\\\": [\\n\\n\\n \\\"xml\\\",\\n \\\"php\\\",\\n \\\"blade\\\",\\n \\\"ejs\\\",\\n \\\"jinja\\\",\\n \\\"javascript\\\",\\n \\\"javascriptreact\\\",\\n \\\"typescriptreact\\\",\\n \\\"plaintext\\\",\\n \\\"markdown\\\",\\n \\\"vue\\\",\\n \\\"liquid\\\",\\n \\\"erb\\\",\\n \\\"lang-cfml\\\",\\n \\\"cfml\\\",\\n \\\"HTML (EEx)\\\",\\n \\\"HTML (Eex)\\\",\\n \\\"plist\\\"\\n],\\n\\\"override-mark.style.implement\\\": \\\"bold\\\",\\n\\\"notebook.cellToolbarLocation\\\": {\\n \\\"default\\\": \\\"right\\\",\\n \\\"jupyter-notebook\\\": \\\"left\\\"\\n},\\n\\\"terminal.integrated.defaultProfile.linux\\\": \\\"zsh\\\",\\n\\\"hediet.vscode-drawio.local-storage\\\": \\\"eyIuZHJhd2lvLWNvbmZpZyI6IntcImxhbmd1YWdlXCI6XCJcIixcImN1c3RvbUZvbnRzXCI6W10sXCJsaWJyYXJpZXNcIjpcImdlbmVyYWxcIixcImN1c3RvbUxpYnJhcmllc1wiOltcIkwuc2NyYXRjaHBhZFwiXSxcInBsdWdpbnNcIjpbXSxcInJlY2VudENvbG9yc1wiOltdLFwiZm9ybWF0V2lkdGhcIjowLFwiY3JlYXRlVGFyZ2V0XCI6ZmFsc2UsXCJwYWdlRm9ybWF0XCI6e1wieFwiOjAsXCJ5XCI6MCxcIndpZHRoXCI6ODI3LFwiaGVpZ2h0XCI6MTE2OX0sXCJzZWFyY2hcIjp0cnVlLFwic2hvd1N0YXJ0U2NyZWVuXCI6dHJ1ZSxcImdyaWRDb2xvclwiOlwiI2QwZDBkMFwiLFwiZGFya0dyaWRDb2xvclwiOlwiIzZlNmU2ZVwiLFwiYXV0b3NhdmVcIjp0cnVlLFwicmVzaXplSW1hZ2VzXCI6bnVsbCxcIm9wZW5Db3VudGVyXCI6MCxcInZlcnNpb25cIjoxOCxcInVuaXRcIjoxLFwiaXNSdWxlck9uXCI6ZmFsc2UsXCJ1aVwiOlwiXCJ9In0=\\\",\\n\\\"redhat.telemetry.enabled\\\": false,\\n\\\"editor.inlineSuggest.enabled\\\": true,\\n\\\"files.watcherExclude\\\": {\\n \\\"**/.history\\\": true\\n},\\n\\\"search.exclude\\\": {\\n \\\"**/.history\\\": true\\n},\\n\\\"intelephense.references.exclude\\\": [\\n \\\"**/vendor/**\\\",\\n \\\"**/.history/**\\\"\\n],\\n\\\"python.linting.ignorePatterns\\\": [\\n \\\"**/site-packages/**/*.py\\\",\\n \\\".vscode/*.py\\\",\\n \\\"**/.history/**/*.py\\\"\\n],\\n\\\"python.workspaceSymbols.exclusionPatterns\\\": [\\n \\\"**/site-packages/**\\\",\\n \\\"**/.history/**\\\"\\n],\\n\\\"local-history.exclude\\\": [\\n \\\"**/.history/**\\\",\\n \\\"**/node_modules/**\\\",\\n \\\"**/out/**\\\",\\n \\\"**/Code/User/**\\\"\\n],\\n\\\"sourcery.token\\\": \\\"user_vqi2QLfINo3phwVTSZNQmcJItPvsCC528BYhhAiSC0uRB2w1BMY2aocgVG8\\\",\\n\\\"peacock.affectAccentBorders\\\": true,\\n\\\"peacock.affectTabActiveBorder\\\": true,\\n\\\"peacock.darkenLightenPercentage\\\": 10,\\n\\\"jestrunner.codeLensSelector\\\": \\\"**/*.{test,spec,int-spec,ispec}.{js,jsx,ts,tsx}\\\",\\n\\\"files.associations\\\": {\\n \\\".env.*.example\\\": \\\"dotenv\\\",\\n},\\n\\\"material-icon-theme.files.associations\\\": {\\n \\\".env.local.example\\\": \\\"tune\\\",\\n \\\".env.dev.example\\\": \\\"tune\\\",\\n \\\".env.ci.example\\\": \\\"tune\\\",\\n \\\".env.prod.example\\\": \\\"tune\\\",\\n \\\".env.production.example\\\": \\\"tune\\\",\\n \\\".env.testing.example\\\": \\\"tune\\\",\\n \\\".env.example\\\": \\\"tune\\\",\\n \\\".env.dusk.testing\\\": \\\"tune\\\",\\n \\\"*.int-spec.ts\\\": \\\"test-ts\\\",\\n \\\"*.ispec.ts\\\": \\\"test-ts\\\",\\n},\\n\\\"vsicons.associations.files\\\": [\\n { \\\"icon\\\": \\\"config\\\", \\\"extensions\\\": [\\\".env.local.example\\\"], \\\"filename\\\": true, \\\"format\\\": \\\"svg\\\" },\\n { \\\"icon\\\": \\\"testts\\\", \\\"extensions\\\": [\\\"int-spec.ts\\\",\\\"ispec.ts\\\"], \\\"format\\\": \\\"svg\\\" },\\n],\\n\\\"editor.bracketPairColorization.enabled\\\": true,\\n\\\"javascript.inlayHints.parameterNames.enabled\\\": \\\"all\\\",\\n\\\"typescript.inlayHints.parameterNames.enabled\\\": \\\"all\\\",\\n\\\"typescript.inlayHints.variableTypes.enabled\\\": true,\\n\\\"typescript.inlayHints.propertyDeclarationTypes.enabled\\\": true,\\n\\\"typescript.inlayHints.parameterTypes.enabled\\\": true,\\n\\\"typescript.inlayHints.functionLikeReturnTypes.enabled\\\": true,\\n\\\"typescript.inlayHints.enumMemberValues.enabled\\\": true,\\n\\\"javascript.inlayHints.propertyDeclarationTypes.enabled\\\": true,\\n\\\"javascript.inlayHints.variableTypes.enabled\\\": true,\\n\\\"javascript.inlayHints.parameterTypes.enabled\\\": true,\\n\\\"javascript.inlayHints.functionLikeReturnTypes.enabled\\\": true,\\n\\\"javascript.inlayHints.enumMemberValues.enabled\\\": true,\\n\\\"[handlebars]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n},\\n\\\"[dockercompose]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n},\\n\\\"workbench.list.horizontalScrolling\\\": true,\\n\\\"workbench.quickOpen.preserveInput\\\": true,\\n\\\"workbench.editor.autoLockGroups\\\": {\\n \\\"workbench.input.interactive\\\": true,\\n \\\"interactive\\\": true,\\n \\\"imagePreview.previewEditor\\\": true,\\n \\\"vscode.markdown.preview.editor\\\": true,\\n \\\"gitlens.rebase\\\": true,\\n \\\"mainThreadWebview-markdown.preview\\\": true\\n},\\n\\\"workbench.editor.highlightModifiedTabs\\\": true,\\n\\\"workbench.editor.scrollToSwitchTabs\\\": true,\\n\\\"workbench.editor.showTabs\\\": true,\\n\\\"workbench.editor.enablePreview\\\": false,\\n\\\"vsicons.dontShowNewVersionMessage\\\": true\\n}\\n\"}"} |
This file contains 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
{"ref":"509b86e4-2f67-4772-8cfb-2782d12c5964","content":"{\"version\":2,\"machineId\":\"e89ee9bd-ce11-499b-b1b0-4f38f94454fc\",\"content\":\"{\\\"settings\\\":\\\"{\\\\n // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes\\\\n \\\\\\\"editor.rulers\\\\\\\": [\\\\n 80,\\\\n 120\\\\n ],\\\\n // Aplica um sinal visual na esquerda da linha selecionada\\\\n \\\\\\\"editor.renderLineHighlight\\\\\\\":\\\\\\\"gutter\\\\\\\",\\\\n\\\\n // Configura tamanho e família da fonte\\\\n \\\\\\\"editor.fontFamily\\\\\\\":\\\\\\\"Fira Code\\\\\\\",\\\\n \\\\\\\"editor.fontLigatures\\\\\\\":true,\\\\n \\\\n \\\\n // Define o tema dos ícones na sidebar\\\\n \\\\\\\"workbench.iconTheme\\\\\\\": \\\\\\\"material-icon-theme\\\\\\\",\\\\n \\\\\\\"terminal.integrated.fontSize\\\\\\\": 16,\\\\n \\\\\\\"editor.tabSize\\\\\\\": 2,\\\\n \\\\\\\"editor.fontSize\\\\\\\": 18,\\\\n \\\\\\\"editor.lineHeight\\\\\\\": 26,\\\\n \\\\\\\"sync.autoDownload\\\\\\\": false,\\\\n \\\\\\\"sync.autoUpload\\\\\\\": false,\\\\n \\\\\\\"sync.forceDownload\\\\\\\": false,\\\\n \\\\\\\"sync.forceUpload\\\\\\\": true,\\\\n \\\\\\\"sync.quietSync\\\\\\\": false,\\\\n \\\\\\\"terminal.integrated.shell.windows\\\\\\\": \\\\\\\"C:\\\\\\\\\\\\\\\\WINDOWS\\\\\\\\\\\\\\\\System32\\\\\\\\\\\\\\\\wsl.exe\\\\\\\",\\\\n \\\\\\\"workbench.colorTheme\\\\\\\": \\\\\\\"Darcula\\\\\\\",\\\\n \\\\\\\"editor.suggestSelection\\\\\\\": \\\\\\\"first\\\\\\\",\\\\n \\\\\\\"workbench.editor.showTabs\\\\\\\": false,\\\\n \\\\\\\"workbench.action.toggleTabsVisibility\\\\\\\": true,\\\\n \\\\\\\"vsintellicode.modify.editor.suggestSelection\\\\\\\": \\\\\\\"automaticallyOverrodeDefaultValue\\\\\\\",\\\\n \\\\\\\"files.autoSave\\\\\\\": \\\\\\\"onFocusChange\\\\\\\",\\\\n \\\\\\\"cSpell.language\\\\\\\": \\\\\\\"en,pt,pt_BR\\\\\\\",\\\\n \\\\\\\"remote.containers.defaultExtensions\\\\\\\": [\\\\n \\\\\\\"alefragnani.bookmarks\\\\\\\",\\\\n \\\\\\\"bungcip.better-toml\\\\\\\",\\\\n \\\\\\\"christian-kohler.path-intellisense\\\\\\\",\\\\n \\\\\\\"dbaeumer.vscode-eslint\\\\\\\",\\\\n \\\\\\\"donjayamanne.githistory\\\\\\\",\\\\n \\\\\\\"esbenp.prettier-vscode\\\\\\\",\\\\n \\\\\\\"firsttris.vscode-jest-runner\\\\\\\",\\\\n \\\\\\\"hazer.reactcodesnippets\\\\\\\",\\\\n \\\\\\\"humao.rest-client\\\\\\\",\\\\n \\\\\\\"johnpapa.vscode-peacock\\\\\\\",\\\\n \\\\\\\"mikestead.dotenv\\\\\\\",\\\\n \\\\\\\"ms-azuretools.vscode-docker\\\\\\\",\\\\n \\\\\\\"naumovs.color-highlight\\\\\\\",\\\\n \\\\\\\"oderwat.indent-rainbow\\\\\\\",\\\\n \\\\\\\"shan.code-settings-sync\\\\\\\",\\\\n \\\\\\\"sonarsource.sonarlint-vscode\\\\\\\",\\\\n \\\\\\\"steoates.autoimport\\\\\\\",\\\\n \\\\\\\"streetsidesoftware.code-spell-checker\\\\\\\",\\\\n \\\\\\\"streetsidesoftware.code-spell-checker-portuguese-brazilian\\\\\\\",\\\\n \\\\\\\"visualstudioexptteam.vscodeintellicode\\\\\\\",\\\\n \\\\\\\"wwm.better-align\\\\\\\",\\\\n \\\\\\\"wix.vscode-import-cost\\\\\\\",\\\\n \\\\\\\"xyz.local-history\\\\\\\",\\\\n \\\\\\\"zignd.html-css-class-completion\\\\\\\"\\\\n ],\\\\n \\\\\\\"docker.containers.sortBy\\\\\\\": \\\\\\\"CreatedTime\\\\\\\",\\\\n \\\\\\\"docker.containers.description\\\\\\\": [\\\\\\\"ContainerName\\\\\\\", \\\\\\\"Status\\\\\\\"],\\\\n \\\\\\\"php.suggest.basic\\\\\\\": false,\\\\n \\\\\\\"[typescriptreact]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[typescript]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"cSpell.userWords\\\\\\\": [\\\\n \\\\\\\"absolutify\\\\\\\",\\\\n \\\\\\\"adminsdk\\\\\\\",\\\\n \\\\\\\"assetic\\\\\\\",\\\\n \\\\\\\"Authenticatable\\\\\\\",\\\\n \\\\\\\"chmod\\\\\\\",\\\\n \\\\\\\"CHOKIDAR\\\\\\\",\\\\n \\\\\\\"Chown\\\\\\\",\\\\n \\\\\\\"ciphertext\\\\\\\",\\\\n \\\\\\\"cloudbuild\\\\\\\",\\\\n \\\\\\\"CLOUDSDK\\\\\\\",\\\\n \\\\\\\"clsx\\\\\\\",\\\\n \\\\\\\"codeeducation\\\\\\\",\\\\n \\\\\\\"codeflix\\\\\\\",\\\\n \\\\\\\"codeplatform\\\\\\\",\\\\n \\\\\\\"CODIGO\\\\\\\",\\\\n \\\\\\\"datasource\\\\\\\",\\\\n \\\\\\\"dbdata\\\\\\\",\\\\n \\\\\\\"DBNAME\\\\\\\",\\\\n \\\\\\\"devexpress\\\\\\\",\\\\n \\\\\\\"dockerize\\\\\\\",\\\\n \\\\\\\"dotenv\\\\\\\",\\\\n \\\\\\\"dpage\\\\\\\",\\\\n \\\\\\\"elasticapm\\\\\\\",\\\\n \\\\\\\"elasticdata\\\\\\\",\\\\n \\\\\\\"entrypoint\\\\\\\",\\\\n \\\\\\\"expl\\\\\\\",\\\\n \\\\\\\"Grpc\\\\\\\",\\\\n \\\\\\\"gserviceaccount\\\\\\\",\\\\n \\\\\\\"hookform\\\\\\\",\\\\n \\\\\\\"icomoon\\\\\\\",\\\\n \\\\\\\"iconmoon\\\\\\\",\\\\n \\\\\\\"IUGU\\\\\\\",\\\\n \\\\\\\"jboss\\\\\\\",\\\\n \\\\\\\"josepy\\\\\\\",\\\\n \\\\\\\"Keycloak\\\\\\\",\\\\n \\\\\\\"kibana\\\\\\\",\\\\n \\\\\\\"kubectl\\\\\\\",\\\\n \\\\\\\"LANCAMENTO\\\\\\\",\\\\n \\\\\\\"laravel\\\\\\\",\\\\n \\\\\\\"linkedin\\\\\\\",\\\\n \\\\\\\"mailgun\\\\\\\",\\\\n \\\\\\\"mailtrap\\\\\\\",\\\\n \\\\\\\"markdownx\\\\\\\",\\\\n \\\\\\\"Microservice\\\\\\\",\\\\n \\\\\\\"microservices\\\\\\\",\\\\n \\\\\\\"MUNICIPIO\\\\\\\",\\\\n \\\\\\\"nestjs\\\\\\\",\\\\n \\\\\\\"newapp\\\\\\\",\\\\n \\\\\\\"newson\\\\\\\",\\\\n \\\\\\\"Nfse\\\\\\\",\\\\n \\\\\\\"nopassword\\\\\\\",\\\\n \\\\\\\"notistack\\\\\\\",\\\\n \\\\\\\"oidc\\\\\\\",\\\\n \\\\\\\"Omie\\\\\\\",\\\\n \\\\\\\"originalname\\\\\\\",\\\\n \\\\\\\"PAGARME\\\\\\\",\\\\n \\\\\\\"PAPERTRAIL\\\\\\\",\\\\n \\\\\\\"persistor\\\\\\\",\\\\n \\\\\\\"PGADMIN\\\\\\\",\\\\n \\\\\\\"pgsql\\\\\\\",\\\\n \\\\\\\"phar\\\\\\\",\\\\n \\\\\\\"Phpunit\\\\\\\",\\\\n \\\\\\\"POSTGRES\\\\\\\",\\\\n \\\\\\\"postgresql\\\\\\\",\\\\n \\\\\\\"prebuild\\\\\\\",\\\\n \\\\\\\"pytz\\\\\\\",\\\\n \\\\\\\"rabbitmq\\\\\\\",\\\\n \\\\\\\"reduxsauce\\\\\\\",\\\\n \\\\\\\"SASL\\\\\\\",\\\\n \\\\\\\"schoolofnet\\\\\\\",\\\\n \\\\\\\"scrollbar\\\\\\\",\\\\n \\\\\\\"sensio\\\\\\\",\\\\n \\\\\\\"smtp\\\\\\\",\\\\n \\\\\\\"sonassets\\\\\\\",\\\\n \\\\\\\"SONBOT\\\\\\\",\\\\n \\\\\\\"sonplatform\\\\\\\",\\\\n \\\\\\\"sortedm\\\\\\\",\\\\n \\\\\\\"Spotify\\\\\\\",\\\\n \\\\\\\"stylesheets\\\\\\\",\\\\n \\\\\\\"typeorm\\\\\\\",\\\\n \\\\\\\"Unprocessable\\\\\\\",\\\\n \\\\\\\"Unstyled\\\\\\\",\\\\n \\\\\\\"USEPOLLING\\\\\\\",\\\\n \\\\\\\"uuidv\\\\\\\",\\\\n \\\\\\\"varchar\\\\\\\",\\\\n \\\\\\\"VERCEL\\\\\\\",\\\\n \\\\\\\"websockets\\\\\\\",\\\\n \\\\\\\"XDEBUG\\\\\\\"\\\\n ],\\\\n \\\\\\\"terminal.integrated.copyOnSelection\\\\\\\": true,\\\\n \\\\\\\"auto-close-tag.disableOnLanguage\\\\\\\": [\\\\n\\\\n \\\\n \\\\\\\"[typescript]\\\\\\\"],\\\\n \\\\\\\"cloudcode.gke\\\\\\\": {\\\\n \\\\\\\"projectIds\\\\\\\": [\\\\\\\"vscode-test-285612\\\\\\\"]\\\\n },\\\\n \\\\\\\"vs-kubernetes\\\\\\\": {\\\\n \\\\\\\"vs-kubernetes.helm-path.linux\\\\\\\": \\\\\\\"/home/argen/.vs-kubernetes/tools/helm/linux-amd64/helm\\\\\\\",\\\\n \\\\\\\"vs-kubernetes.draft-path.linux\\\\\\\": \\\\\\\"/home/argen/.vs-kubernetes/tools/draft/linux-amd64/draft\\\\\\\",\\\\n \\\\\\\"vs-kubernetes.minikube-path.linux\\\\\\\": \\\\\\\"/home/argen/.vs-kubernetes/tools/minikube/linux-amd64/minikube\\\\\\\",\\\\n \\\\\\\"vscode-kubernetes.minikube-path.linux\\\\\\\": \\\\\\\"/home/argen/.vs-kubernetes/tools/minikube/linux-amd64/minikube\\\\\\\",\\\\n \\\\\\\"vscode-kubernetes.helm-path.linux\\\\\\\": \\\\\\\"/home/argen/.vs-kubernetes/tools/helm/linux-amd64/helm\\\\\\\"\\\\n },\\\\n \\\\\\\"[html]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[yaml]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[javascript]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"files.exclude\\\\\\\": {\\\\n \\\\\\\"**/__pycache__\\\\\\\": true,\\\\n \\\\\\\"**/.history\\\\\\\": true,\\\\n \\\\\\\"**/*.pyc\\\\\\\": true\\\\n },\\\\n \\\\\\\"git.autofetch\\\\\\\": true,\\\\n \\\\\\\"terminal.external.windowsExec\\\\\\\": \\\\\\\"C:\\\\\\\\\\\\\\\\Program Files\\\\\\\\\\\\\\\\Git\\\\\\\\\\\\\\\\git-bash.exe\\\\\\\",\\\\n \\\\\\\"terminal.integrated.automationShell.windows\\\\\\\": \\\\\\\"C:\\\\\\\\\\\\\\\\Program Files\\\\\\\\\\\\\\\\Git\\\\\\\\\\\\\\\\git-bash.exe\\\\\\\",\\\\n \\\\\\\"sshfs.configs\\\\\\\": [\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"unnamed\\\\\\\"\\\\n }\\\\n ],\\\\n \\\\\\\"remote.SSH.showLoginTerminal\\\\\\\": true,\\\\n \\\\\\\"remote.SSH.path\\\\\\\": \\\\\\\"C:\\\\\\\\\\\\\\\\Program Files\\\\\\\\\\\\\\\\Git\\\\\\\\\\\\\\\\usr\\\\\\\\\\\\\\\\bin\\\\\\\\\\\\\\\\ssh.exe\\\\\\\",\\\\n \\\\\\\"peacock.favoriteColors\\\\\\\": [\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Angular\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#a6120d\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Angular Red\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#dd0531\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Apache Kafka\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#000000\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Azure Blue\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#007fff\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Django\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#0C4B33\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Golang\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#007d9c\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"JavaScript Yellow\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#f9e64f\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Keycloak\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#39a5dc\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Laravel\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#fb503b\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Loopback\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#3f5dff\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Mandalorian Blue\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#1857a4\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Nest.js\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#e0234e\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Node Green\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#215732\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"React Blue\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#61dafb\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Something Different\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#832561\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Svelte Orange\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#ff3d00\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Vue Green\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#42b883\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"RabbitMQ\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#f60\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"TypeScript\\\\\\\",\\\\n \\\\\\\"value\\\\\\\": \\\\\\\"#007acc\\\\\\\"\\\\n }\\\\n ],\\\\n\\\\\\\"peacock.elementAdjustments\\\\\\\": {\\\\n \\\\\\\"statusBar\\\\\\\": \\\\\\\"lighten\\\\\\\",\\\\n \\\\\\\"titleBar\\\\\\\": \\\\\\\"lighten\\\\\\\"\\\\n},\\\\n\\\\\\\"terminal.integrated.shell.linux\\\\\\\": \\\\\\\"/bin/zsh\\\\\\\",\\\\n\\\\\\\"remote.SSH.remotePlatform\\\\\\\": {\\\\n \\\\\\\"192.168.1.53\\\\\\\": \\\\\\\"linux\\\\\\\"\\\\n},\\\\n\\\\\\\"[json]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"vscode.json-language-features\\\\\\\"\\\\n},\\\\n\\\\\\\"[jsonc]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"vscode.json-language-features\\\\\\\"\\\\n},\\\\n\\\\\\\"peacock.darkForegroundColor\\\\\\\": \\\\\\\"\\\\\\\",\\\\n\\\\\\\"[php]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"bmewburn.vscode-intelephense-client\\\\\\\"\\\\n},\\\\n\\\\\\\"php-cs-fixer.executablePath\\\\\\\": \\\\\\\"${extensionPath}/php-cs-fixer.phar\\\\\\\",\\\\n\\\\\\\"php-cs-fixer.lastDownload\\\\\\\": 1605347483003,\\\\n\\\\\\\"editor.mouseWheelZoom\\\\\\\": true,\\\\n\\\\\\\"conventionalCommits.lineBreak\\\\\\\": \\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\",\\\\n\\\\\\\"git.suggestSmartCommit\\\\\\\": false,\\\\n\\\\\\\"[scss]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n},\\\\n\\\\\\\"workbench.editor.wrapTabs\\\\\\\": true,\\\\n\\\\\\\"workbench.editor.decorations.badges\\\\\\\": true,\\\\n\\\\\\\"workbench.editor.decorations.colors\\\\\\\": true,\\\\n\\\\\\\"screencastMode.onlyKeyboardShortcuts\\\\\\\": true,\\\\n\\\\\\\"indentRainbow.colors\\\\\\\": [\\\\n \\\\\\\"rgba(255,255,64,0.07)\\\\\\\",\\\\n \\\\\\\"rgba(127,255,127,0.07)\\\\\\\",\\\\n \\\\\\\"rgba(255,127,255,0.07)\\\\\\\",\\\\n \\\\\\\"rgba(79,236,236,0.07)\\\\\\\"\\\\n],\\\\n\\\\\\\"[twig]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"mblode.twig-language-2\\\\\\\"\\\\n},\\\\n\\\\\\\"workbench.colorCustomizations\\\\\\\": {\\\\n \\\\\\\"gitDecoration.untrackedResourceForeground\\\\\\\": \\\\\\\"#ff6666\\\\\\\",\\\\n \\\\\\\"gitDecoration.modifiedResourceForeground\\\\\\\": \\\\\\\"#89aeff\\\\\\\"\\\\n},\\\\n\\\\\\\"workbench.editorAssociations\\\\\\\": {\\\\n \\\\\\\"*.ipynb\\\\\\\": \\\\\\\"jupyter-notebook\\\\\\\"\\\\n},\\\\n\\\\\\\"editor.inlineHints.fontFamily\\\\\\\": \\\\\\\"\\\\\\\\\\\\\\\"JetBrains Mono\\\\\\\\\\\\\\\", Consolas, 'Courier New', monospace\\\\\\\",\\\\n// \\\\\\\"editor.fontFamily\\\\\\\": \\\\\\\"\\\\\\\\\\\\\\\"JetBrains Mono\\\\\\\\\\\\\\\", Consolas, 'Courier New', monospace\\\\\\\",\\\\n\\\\\\\"[xml]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"mblode.pretty-formatter\\\\\\\"\\\\n},\\\\n\\\\\\\"auto-close-tag.activationOnLanguage\\\\\\\": [\\\\n\\\\n\\\\n \\\\\\\"xml\\\\\\\",\\\\n \\\\\\\"php\\\\\\\",\\\\n \\\\\\\"blade\\\\\\\",\\\\n \\\\\\\"ejs\\\\\\\",\\\\n \\\\\\\"jinja\\\\\\\",\\\\n \\\\\\\"javascript\\\\\\\",\\\\n \\\\\\\"javascriptreact\\\\\\\",\\\\n \\\\\\\"typescriptreact\\\\\\\",\\\\n \\\\\\\"plaintext\\\\\\\",\\\\n \\\\\\\"markdown\\\\\\\",\\\\n \\\\\\\"vue\\\\\\\",\\\\n \\\\\\\"liquid\\\\\\\",\\\\n \\\\\\\"erb\\\\\\\",\\\\n \\\\\\\"lang-cfml\\\\\\\",\\\\n \\\\\\\"cfml\\\\\\\",\\\\n \\\\\\\"HTML (EEx)\\\\\\\",\\\\n \\\\\\\"HTML (Eex)\\\\\\\",\\\\n \\\\\\\"plist\\\\\\\"\\\\n],\\\\n\\\\\\\"override-mark.style.implement\\\\\\\": \\\\\\\"bold\\\\\\\",\\\\n\\\\\\\"notebook.cellToolbarLocation\\\\\\\": {\\\\n \\\\\\\"default\\\\\\\": \\\\\\\"right\\\\\\\",\\\\n \\\\\\\"jupyter-notebook\\\\\\\": \\\\\\\"left\\\\\\\"\\\\n},\\\\n\\\\\\\"terminal.integrated.defaultProfile.linux\\\\\\\": \\\\\\\"zsh\\\\\\\",\\\\n\\\\\\\"hediet.vscode-drawio.local-storage\\\\\\\": \\\\\\\"eyIuZHJhd2lvLWNvbmZpZyI6IntcImxhbmd1YWdlXCI6XCJcIixcImN1c3RvbUZvbnRzXCI6W10sXCJsaWJyYXJpZXNcIjpcImdlbmVyYWxcIixcImN1c3RvbUxpYnJhcmllc1wiOltcIkwuc2NyYXRjaHBhZFwiXSxcInBsdWdpbnNcIjpbXSxcInJlY2VudENvbG9yc1wiOltdLFwiZm9ybWF0V2lkdGhcIjowLFwiY3JlYXRlVGFyZ2V0XCI6ZmFsc2UsXCJwYWdlRm9ybWF0XCI6e1wieFwiOjAsXCJ5XCI6MCxcIndpZHRoXCI6ODI3LFwiaGVpZ2h0XCI6MTE2OX0sXCJzZWFyY2hcIjp0cnVlLFwic2hvd1N0YXJ0U2NyZWVuXCI6dHJ1ZSxcImdyaWRDb2xvclwiOlwiI2QwZDBkMFwiLFwiZGFya0dyaWRDb2xvclwiOlwiIzZlNmU2ZVwiLFwiYXV0b3NhdmVcIjp0cnVlLFwicmVzaXplSW1hZ2VzXCI6bnVsbCxcIm9wZW5Db3VudGVyXCI6MCxcInZlcnNpb25cIjoxOCxcInVuaXRcIjoxLFwiaXNSdWxlck9uXCI6ZmFsc2UsXCJ1aVwiOlwiXCJ9In0=\\\\\\\",\\\\n\\\\\\\"redhat.telemetry.enabled\\\\\\\": false,\\\\n\\\\\\\"editor.inlineSuggest.enabled\\\\\\\": true,\\\\n\\\\\\\"files.watcherExclude\\\\\\\": {\\\\n \\\\\\\"**/.history\\\\\\\": true\\\\n},\\\\n\\\\\\\"search.exclude\\\\\\\": {\\\\n \\\\\\\"**/.history\\\\\\\": true\\\\n},\\\\n\\\\\\\"intelephense.references.exclude\\\\\\\": [\\\\n \\\\\\\"**/vendor/**\\\\\\\",\\\\n \\\\\\\"**/.history/**\\\\\\\"\\\\n],\\\\n\\\\\\\"python.linting.ignorePatterns\\\\\\\": [\\\\n \\\\\\\"**/site-packages/**/*.py\\\\\\\",\\\\n \\\\\\\".vscode/*.py\\\\\\\",\\\\n \\\\\\\"**/.history/**/*.py\\\\\\\"\\\\n],\\\\n\\\\\\\"python.workspaceSymbols.exclusionPatterns\\\\\\\": [\\\\n \\\\\\\"**/site-packages/**\\\\\\\",\\\\n \\\\\\\"**/.history/**\\\\\\\"\\\\n],\\\\n\\\\\\\"local-history.exclude\\\\\\\": [\\\\n \\\\\\\"**/.history/**\\\\\\\",\\\\n \\\\\\\"**/node_modules/**\\\\\\\",\\\\n \\\\\\\"**/out/**\\\\\\\",\\\\n \\\\\\\"**/Code/User/**\\\\\\\"\\\\n],\\\\n\\\\\\\"sourcery.token\\\\\\\": \\\\\\\"user_vqi2QLfINo3phwVTSZNQmcJItPvsCC528BYhhAiSC0uRB2w1BMY2aocgVG8\\\\\\\",\\\\n\\\\\\\"peacock.affectAccentBorders\\\\\\\": true,\\\\n\\\\\\\"peacock.affectTabActiveBorder\\\\\\\": true,\\\\n\\\\\\\"peacock.darkenLightenPercentage\\\\\\\": 10,\\\\n\\\\\\\"jestrunner.codeLensSelector\\\\\\\": \\\\\\\"**/*.{test,spec,int-spec,ispec}.{js,jsx,ts,tsx}\\\\\\\",\\\\n\\\\\\\"files.associations\\\\\\\": {\\\\n \\\\\\\".env.*.example\\\\\\\": \\\\\\\"dotenv\\\\\\\",\\\\n},\\\\n\\\\\\\"material-icon-theme.files.associations\\\\\\\": {\\\\n \\\\\\\".env.local.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.dev.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.ci.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.prod.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.production.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.testing.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.example\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\".env.dusk.testing\\\\\\\": \\\\\\\"tune\\\\\\\",\\\\n \\\\\\\"*.int-spec.ts\\\\\\\": \\\\\\\"test-ts\\\\\\\",\\\\n \\\\\\\"*.ispec.ts\\\\\\\": \\\\\\\"test-ts\\\\\\\",\\\\n},\\\\n\\\\\\\"vsicons.associations.files\\\\\\\": [\\\\n { \\\\\\\"icon\\\\\\\": \\\\\\\"config\\\\\\\", \\\\\\\"extensions\\\\\\\": [\\\\\\\".env.local.example\\\\\\\"], \\\\\\\"filename\\\\\\\": true, \\\\\\\"format\\\\\\\": \\\\\\\"svg\\\\\\\" },\\\\n { \\\\\\\"icon\\\\\\\": \\\\\\\"testts\\\\\\\", \\\\\\\"extensions\\\\\\\": [\\\\\\\"int-spec.ts\\\\\\\",\\\\\\\"ispec.ts\\\\\\\"], \\\\\\\"format\\\\\\\": \\\\\\\"svg\\\\\\\" },\\\\n],\\\\n\\\\\\\"editor.bracketPairColorization.enabled\\\\\\\": true,\\\\n\\\\\\\"javascript.inlayHints.parameterNames.enabled\\\\\\\": \\\\\\\"all\\\\\\\",\\\\n\\\\\\\"typescript.inlayHints.parameterNames.enabled\\\\\\\": \\\\\\\"all\\\\\\\",\\\\n\\\\\\\"typescript.inlayHints.variableTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"typescript.inlayHints.propertyDeclarationTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"typescript.inlayHints.parameterTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"typescript.inlayHints.functionLikeReturnTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"typescript.inlayHints.enumMemberValues.enabled\\\\\\\": true,\\\\n\\\\\\\"javascript.inlayHints.propertyDeclarationTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"javascript.inlayHints.variableTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"javascript.inlayHints.parameterTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"javascript.inlayHints.functionLikeReturnTypes.enabled\\\\\\\": true,\\\\n\\\\\\\"javascript.inlayHints.enumMemberValues.enabled\\\\\\\": true,\\\\n\\\\\\\"[handlebars]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n},\\\\n\\\\\\\"[dockercompose]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n},\\\\n\\\\\\\"workbench.list.horizontalScrolling\\\\\\\": true,\\\\n\\\\\\\"workbench.quickOpen.preserveInput\\\\\\\": true,\\\\n\\\\\\\"workbench.editor.autoLockGroups\\\\\\\": {\\\\n \\\\\\\"workbench.input.interactive\\\\\\\": true,\\\\n \\\\\\\"interactive\\\\\\\": true,\\\\n \\\\\\\"imagePreview.previewEditor\\\\\\\": true,\\\\n \\\\\\\"vscode.markdown.preview.editor\\\\\\\": true,\\\\n \\\\\\\"gitlens.rebase\\\\\\\": true,\\\\n \\\\\\\"mainThreadWebview-markdown.preview\\\\\\\": true\\\\n},\\\\n\\\\\\\"workbench.editor.highlightModifiedTabs\\\\\\\": true,\\\\n\\\\\\\"workbench.editor.scrollToSwitchTabs\\\\\\\": true,\\\\n\\\\\\\"workbench.editor.showTabs\\\\\\\": true,\\\\n\\\\\\\"workbench.editor.enablePreview\\\\\\\": false,\\\\n\\\\\\\"vsicons.dontShowNewVersionMessage\\\\\\\": true,\\\\n\\\\\\\"settingsSync.ignoredExtensions\\\\\\\": [\\\\n\\\\n \\\\\\\"tabnine.tabnine-vscode\\\\\\\",\\\\n \\\\\\\"dbaeumer.vscode-eslint\\\\\\\"\\\\n],\\\\n\\\\\\\"sync.gist\\\\\\\": \\\\\\\"7bb2a91823c83fe74e01e8fb2b29576a\\\\\\\"\\\\n}\\\"}\"}"} |
This file contains 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
{"ref":"0","content":null} |
This file contains 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
a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment