Skip to content

Instantly share code, notes, and snippets.

@phizaz
Created February 24, 2017 14:25
Show Gist options
  • Save phizaz/a0150bbb6b91fb9cf9e93491d7b83486 to your computer and use it in GitHub Desktop.
Save phizaz/a0150bbb6b91fb9cf9e93491d7b83486 to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your key bindings in this file to overwrite the defaults
[{
"key": "ctrl+a",
"command": "editor.action.selectAll"
},
{
"key": "ctrl+x",
"command": "editor.action.clipboardCutAction"
},
{
"key": "shift+ctrl+f",
"command": "editor.action.formatDocument"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+-",
"command": "editor.fold"
},
{
"key": "ctrl+=",
"command": "editor.unfold"
},
{
"key": "ctrl+w",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "ctrl+s",
"command": "workbench.action.files.save"
},
{
"key": "shift+ctrl+s",
"command": "workbench.action.files.saveAs"
},
{
"key": "ctrl+f",
"command": "search.action.focusActiveEditor"
},
{
"key": "ctrl+z",
"command": "undo"
},
{
"key": "ctrl+y",
"command": "redo"
},
{
"key": "ctrl+c",
"command": "editor.action.clipboardCopyAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+v",
"command": "editor.action.clipboardPasteAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+,",
"command": "workbench.action.openGlobalSettings"
},
{
"key": "alt+ctrl+,",
"command": "workbench.action.openWorkspaceSettings"
},
{
"key": "shift+ctrl+,",
"command": "workbench.action.openGlobalKeybindings"
},
{
"key": "ctrl+f",
"command": "actions.find"
},
{
"key": "ctrl+shift+alt+f",
"command": "workbench.action.findInFiles"
},
{
"key": "ctrl+/",
"command": "editor.action.commentLine"
},
{
"key": "ctrl+shift+n",
"command": "workbench.action.files.newFolder"
},
{
"key": "ctrl+n",
"command": "workbench.action.files.newFile"
},
{
"key": "ctrl+shift+u",
"command": "workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+alt+n",
"command": "workbench.action.newWindow"
},
{
"key": "ctrl+]",
"command": "editor.action.indentLines"
},
{
"key": "shift+ctrl+p",
"command": "workbench.action.showCommands"
},
{
"key": "ctrl+p",
"command": "workbench.action.quickOpen"
},
{
"key": "shift+ctrl+b",
"command": "workbench.action.tasks.build"
},
{
"key": "ctrl+2",
"command": "workbench.action.splitEditor"
},
{
"key": "ctrl+d",
"command": "editor.action.addSelectionToNextFindMatch"
},
{
"key": "shift+ctrl+d",
"command": "editor.action.addSelectionToPreviousFindMatch"
},
{
"key": "ctrl+k v",
"command": "markdown.showPreviewToSide"
},
{
"key": "ctrl+r",
"command": "code-runner.run"
},
// git
{
"key": "ctrl+alt+s",
"command": "workbench.action.git.stage"
},
// indent lines
{
"key": "ctrl+0",
"command": "editor.action.indentLines"
},
{
"key": "ctrl+9",
"command": "editor.action.outdentLines"
},
// terminals
{
"key": "ctrl+shift+t",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+shift+w",
"command": "workbench.action.terminal.kill"
},
//
{
"key": "ctrl+shift+space",
"command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly"
},
// python
{
"key": "ctrl+r",
"command": ""
}
]
// Controls the font size in pixels.
"editor.fontSize": 14,
// Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange" (editor loses focus), "onWindowChange" (window loses focus). If set to "afterDelay", you can configure the delay in "files.autoSaveDelay".
"files.autoSave": "off",
// Controls the font family.
"editor.fontFamily": "Consolas, 'Courier New', monospace",
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.tabSize": 4,
// Controls how the editor should render whitespace characters, possibilities are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "none",
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true
},
// Controls the cursor style, accepted values are 'block', 'line' and 'underline'
"editor.cursorStyle": "line",
// Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.insertSpaces": true,
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping (word wrapping). Setting this to -1 forces the editor to never wrap.
"editor.wrappingColumn": 300,
// Configure file associations to languages (e.g. "*.extension": "html"). These have precedence over the default associations of the languages installed.
"files.associations": {}
}
,
{
// Format a file on save. A formatter must be available, the file must not be auto-saved, and editor must not be shutting down.
"editor.formatOnSave": false,
// Controls the font family.
"editor.fontFamily": "Consolas, 'Courier New', monospace",
// Controls the font weight.
"editor.fontWeight": "normal",
// Controls the font size in pixels.
"editor.fontSize": 14,
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 0,
// Controls the display of line numbers. Possible values are 'on', 'off', and 'relative'. 'relative' shows the line count from the current cursor position.
"editor.lineNumbers": "on",
// Columns at which to show vertical rulers
"editor.rulers": [],
// Characters that will be used as word separators when doing word related navigations or operations
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.tabSize": 4,
// Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.insertSpaces": true,
// When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
"editor.detectIndentation": true,
// Controls if selections have rounded corners
"editor.roundedSelection": true,
// Controls if the editor will scroll beyond the last line
"editor.scrollBeyondLastLine": true,
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping (word wrapping). Setting this to -1 forces the editor to never wrap.
"editor.wrappingColumn": 300,
// Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns).
"editor.wordWrap": false,
// Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'.
"editor.wrappingIndent": "same",
// A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events
"editor.mouseWheelScrollSensitivity": 1,
// Controls if quick suggestions should show up or not while typing
"editor.quickSuggestions": true,
// Controls the delay in ms after which quick suggestions will show up
"editor.quickSuggestionsDelay": 10,
// Enables parameter hints
"editor.parameterHints": true,
// Controls if the editor should automatically close brackets after opening them
"editor.autoClosingBrackets": true,
// Controls if the editor should automatically format the line after typing
"editor.formatOnType": false,
// Controls if the editor should automatically format the pasted content. A formatter must be available and the formatter should be able to format a range in a document.
"editor.formatOnPaste": false,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
"editor.acceptSuggestionOnEnter": true,
// Controls if suggestions should be accepted on commit characters. For instance in JavaScript the semi-colon (';') can be a commit character that accepts a suggestion and types that character.
"editor.acceptSuggestionOnCommitCharacter": true,
// Controls whether snippets are shown with other suggestions and how they are sorted.
"editor.snippetSuggestions": "bottom",
// Controls whether copying without a selection copies the current line.
"editor.emptySelectionClipboard": true,
// Enable word based suggestions.
"editor.wordBasedSuggestions": true,
// Font size for the suggest widget
"editor.suggestFontSize": 0,
// Line height for the suggest widget
"editor.suggestLineHeight": 0,
// Insert snippets when their prefix matches. Works best when 'quickSuggestions' aren't enabled.
"editor.tabCompletion": false,
// Controls whether the editor should highlight similar matches to the selection
"editor.selectionHighlight": true,
// Controls the number of decorations that can show up at the same position in the overview ruler
"editor.overviewRulerLanes": 3,
// Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid'
"editor.cursorBlinking": "blink",
// Zoom the font of the editor when using mouse wheel and holding Ctrl
"editor.mouseWheelZoom": false,
// Controls the cursor style, accepted values are 'block', 'line' and 'underline'
"editor.cursorStyle": "line",
// Enables font ligatures
"editor.fontLigatures": false,
// Controls if the cursor should be hidden in the overview ruler.
"editor.hideCursorInOverviewRuler": false,
// Controls how the editor should render whitespace characters, possibilities are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "none",
// Controls whether the editor should render control characters
"editor.renderControlCharacters": false,
// Controls whether the editor should render indent guides
"editor.renderIndentGuides": false,
// Controls how the editor should render the current line highlight, possibilities are 'none', 'gutter', 'line', and 'all'.
"editor.renderLineHighlight": "line",
// Controls if the editor shows code lenses
"editor.codeLens": true,
// Controls whether the editor has code folding enabled
"editor.folding": true,
// Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging.
"editor.glyphMargin": true,
// Inserting and deleting whitespace follows tab stops
"editor.useTabStops": true,
// Remove trailing auto inserted whitespace
"editor.trimAutoWhitespace": true,
// Keep peek editors open even when double clicking their content or when hitting Escape.
"editor.stablePeek": false,
// Controls if the diff editor shows the diff side by side or inline
"diffEditor.renderSideBySide": true,
// Controls if the diff editor shows changes in leading or trailing whitespace as diffs
"diffEditor.ignoreTrimWhitespace": true,
// Controls if the diff editor shows +/- indicators for added/removed changes
"diffEditor.renderIndicators": true,
// When enabled, emmet abbreviations are expanded when pressing TAB.
"emmet.triggerExpansionOnTab": true,
// Preferences used to modify behavior of some actions and resolvers of Emmet.
"emmet.preferences": {},
// Define profile for specified syntax or use your own profile with specific rules.
"emmet.syntaxProfiles": {},
// An array of languages where emmet abbreviations should not be expanded.
"emmet.excludeLanguages": [
"markdown"
],
// Path to a folder containing emmet profiles, snippets and preferences
"emmet.extensionsPath": null,
// Controls if opened editors should show in tabs or not.
"workbench.editor.showTabs": true,
// Controls the position of the editor's tabs close buttons or disables them when set to 'off'.
"workbench.editor.tabCloseButton": "right",
// Controls if opened editors should show with an icon or not. This requires an icon theme to be enabled as well.
"workbench.editor.showIcons": true,
// Controls if opened editors show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
"workbench.editor.enablePreview": true,
// Controls if opened editors from Quick Open show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
"workbench.editor.enablePreviewFromQuickOpen": true,
// Controls where editors open. Select 'left' or 'right' to open editors to the left or right of the current active one. Select 'first' or 'last' to open editors independently from the currently active one.
"workbench.editor.openPositioning": "right",
// Controls if Quick Open should close automatically once it loses focus.
"workbench.quickOpen.closeOnFocusLost": true,
// Controls if opening settings also opens an editor showing all default settings.
"workbench.settings.openDefaultSettings": true,
// Controls the location of the sidebar. It can either show on the left or right of the workbench.
"workbench.sideBar.location": "left",
// Controls the visibility of the status bar at the bottom of the workbench.
"workbench.statusBar.visible": true,
// Controls the visibility of the activity bar in the workbench.
"workbench.activityBar.visible": true,
// When enabled, will show the Welcome experience on startup.
"workbench.welcome.enabled": true,
// Controls if files should open in a new window or the last active window.
// - default: files will open in the last active window unless opened via the dock or from finder (macOS only)
// - on: files will open in a new window
// - off: files will open in the last active window
// Note that there can still be cases where this setting is ignored (e.g. when using the -new-window or -reuse-window command line option).
"window.openFilesInNewWindow": "default",
// Controls if folders should open in a new window or replace the last active window.
// - default: folders will open in a new window unless a folder is picked from within the application (e.g. via the File menu)
// - on: folders will open in a new window
// - off: folders will replace the last active window
// Note that there can still be cases where this setting is ignored (e.g. when using the -new-window or -reuse-window command line option).
"window.openFoldersInNewWindow": "default",
// Controls how folders are being reopened after a restart. Select 'none' to never reopen a folder, 'one' to reopen the last folder you worked on or 'all' to reopen all folders of your last session.
"window.reopenFolders": "one",
// Controls if a window should restore to full screen mode if it was exited in full screen mode.
"window.restoreFullscreen": false,
// Adjust the zoom level of the window. The original size is 0 and each increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity.
"window.zoomLevel": 0,
// If enabled, will show the full path of opened files in the window title.
"window.showFullPath": false,
// Controls the dimensions of opening a new window. By default, a new window will open in the center of the screen with small dimensions. When set to 'inherit', the window will get the same dimensions as the last active one. When set to 'maximized', the window will open maximized and fullscreen if configured to 'fullscreen'.
"window.newWindowDimensions": "default",
// Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and a single press of the Alt key will show it. By default, the menu bar will be visible, unless the window is full screen.
"window.menuBarVisibility": "default",
// If enabled, will automatically change to high contrast theme if Windows is using a high contrast theme, and to dark theme when switching away from a Windows high contrast theme.
"window.autoDetectHighContrast": true,
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true
},
// Configure file associations to languages (e.g. "*.extension": "html"). These have precedence over the default associations of the languages installed.
"files.associations": {},
// The default character set encoding to use when reading and writing files.
"files.encoding": "utf8",
// The default end of line character.
"files.eol": "\r\n",
// When enabled, will trim trailing whitespace when saving a file.
"files.trimTrailingWhitespace": false,
// When enabled, insert a final new line at the end of the file when saving it.
"files.insertFinalNewline": false,
// Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange" (editor loses focus), "onWindowChange" (window loses focus). If set to "afterDelay", you can configure the delay in "files.autoSaveDelay".
"files.autoSave": "off",
// Controls the delay in ms after which a dirty file is saved automatically. Only applies when "files.autoSave" is set to "afterDelay"
"files.autoSaveDelay": 1000,
// Configure glob patterns of file paths to exclude from file watching. Changing this setting requires a restart. When you experience Code consuming lots of cpu time on startup, you can exclude large folders to reduce the initial load.
"files.watcherExclude": {
"**/.git/objects/**": true
},
// Controls whether unsaved files are remembered between sessions, allowing the save prompt when exiting the editor to be skipped.
"files.hotExit": "onExit",
// Controls if turning on Zen Mode also puts the workbench into full screen mode.
"zenMode.fullScreen": true,
// Controls if turning on Zen Mode also hides workbench tabs.
"zenMode.hideTabs": true,
// Controls if turning on Zen Mode also hides the status bar at the bottom of the workbench.
"zenMode.hideStatusBar": true,
// Number of editors shown in the Open Editors pane. Set it to 0 to hide the pane.
"explorer.openEditors.visible": 9,
// Controls if the height of the open editors section should adapt dynamically to the number of elements or not.
"explorer.openEditors.dynamicHeight": true,
// Controls if the explorer should automatically reveal and select files when opening them.
"explorer.autoReveal": true,
// Controls if the explorer should allow to move files and folders via drag and drop.
"explorer.enableDragAndDrop": true,
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
// Configure to include results from a global symbol search in the file results for Quick Open.
"search.quickOpen.includeSymbols": false,
// Is git enabled
"git.enabled": true,
// Path to the git executable
"git.path": null,
// Whether auto refreshing is enabled
"git.autorefresh": true,
// Whether auto fetching is enabled.
"git.autofetch": true,
// Whether long commit messages should be warned about.
"git.enableLongCommitWarning": true,
// Always allow large repositories to be managed by Code.
"git.allowLargeRepositories": false,
// Confirm before synchronizing git repositories.
"git.confirmSync": true,
// Controls the git badge counter.
"git.countBadge": "all",
// Controls what type of branches are listed.
"git.checkoutType": "all",
// The proxy setting to use. If not set will be taken from the http_proxy and https_proxy environment variables
"http.proxy": "",
// Whether the proxy server certificate should be verified against the list of supplied CAs.
"http.proxyStrictSSL": true,
// The value to send as the 'Proxy-Authorization' header for every network request.
"http.proxyAuthorization": null,
// Configure whether you receive automatic updates from an update channel. Requires a restart after change.
"update.channel": "default",
// Controls CSS validation and problem severities.
// Enables or disables all validations
"css.validate": true,
// When using a vendor-specific prefix make sure to also include all other vendor-specific properties
"css.lint.compatibleVendorPrefixes": "ignore",
// When using a vendor-specific prefix also include the standard property
"css.lint.vendorPrefix": "warning",
// Do not use duplicate style definitions
"css.lint.duplicateProperties": "ignore",
// Do not use empty rulesets
"css.lint.emptyRules": "warning",
// Import statements do not load in parallel
"css.lint.importStatement": "ignore",
// Do not use width or height when using padding or border
"css.lint.boxModel": "ignore",
// The universal selector (*) is known to be slow
"css.lint.universalSelector": "ignore",
// No unit for zero needed
"css.lint.zeroUnits": "ignore",
// @font-face rule must define 'src' and 'font-family' properties
"css.lint.fontFaceProperties": "warning",
// Hex colors must consist of three or six hex numbers
"css.lint.hexColorLength": "error",
// Invalid number of parameters
"css.lint.argumentsInColorFunction": "error",
// Unknown property.
"css.lint.unknownProperties": "warning",
// IE hacks are only necessary when supporting IE7 and older
"css.lint.ieHack": "ignore",
// Unknown vendor specific property.
"css.lint.unknownVendorSpecificProperties": "ignore",
// Property is ignored due to the display. E.g. with 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect
"css.lint.propertyIgnoredDueToDisplay": "warning",
// Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
"css.lint.important": "ignore",
// Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
"css.lint.float": "ignore",
// Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
"css.lint.idSelector": "ignore",
// Traces the communication between VS Code and the CSS language server.
"css.trace.server": "off",
// Controls SCSS validation and problem severities.
// Enables or disables all validations
"scss.validate": true,
// When using a vendor-specific prefix make sure to also include all other vendor-specific properties
"scss.lint.compatibleVendorPrefixes": "ignore",
// When using a vendor-specific prefix also include the standard property
"scss.lint.vendorPrefix": "warning",
// Do not use duplicate style definitions
"scss.lint.duplicateProperties": "ignore",
// Do not use empty rulesets
"scss.lint.emptyRules": "warning",
// Import statements do not load in parallel
"scss.lint.importStatement": "ignore",
// Do not use width or height when using padding or border
"scss.lint.boxModel": "ignore",
// The universal selector (*) is known to be slow
"scss.lint.universalSelector": "ignore",
// No unit for zero needed
"scss.lint.zeroUnits": "ignore",
// @font-face rule must define 'src' and 'font-family' properties
"scss.lint.fontFaceProperties": "warning",
// Hex colors must consist of three or six hex numbers
"scss.lint.hexColorLength": "error",
// Invalid number of parameters
"scss.lint.argumentsInColorFunction": "error",
// Unknown property.
"scss.lint.unknownProperties": "warning",
// IE hacks are only necessary when supporting IE7 and older
"scss.lint.ieHack": "ignore",
// Unknown vendor specific property.
"scss.lint.unknownVendorSpecificProperties": "ignore",
// Property is ignored due to the display. E.g. with 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect
"scss.lint.propertyIgnoredDueToDisplay": "warning",
// Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
"scss.lint.important": "ignore",
// Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
"scss.lint.float": "ignore",
// Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
"scss.lint.idSelector": "ignore",
// Controls LESS validation and problem severities.
// Enables or disables all validations
"less.validate": true,
// When using a vendor-specific prefix make sure to also include all other vendor-specific properties
"less.lint.compatibleVendorPrefixes": "ignore",
// When using a vendor-specific prefix also include the standard property
"less.lint.vendorPrefix": "warning",
// Do not use duplicate style definitions
"less.lint.duplicateProperties": "ignore",
// Do not use empty rulesets
"less.lint.emptyRules": "warning",
// Import statements do not load in parallel
"less.lint.importStatement": "ignore",
// Do not use width or height when using padding or border
"less.lint.boxModel": "ignore",
// The universal selector (*) is known to be slow
"less.lint.universalSelector": "ignore",
// No unit for zero needed
"less.lint.zeroUnits": "ignore",
// @font-face rule must define 'src' and 'font-family' properties
"less.lint.fontFaceProperties": "warning",
// Hex colors must consist of three or six hex numbers
"less.lint.hexColorLength": "error",
// Invalid number of parameters
"less.lint.argumentsInColorFunction": "error",
// Unknown property.
"less.lint.unknownProperties": "warning",
// IE hacks are only necessary when supporting IE7 and older
"less.lint.ieHack": "ignore",
// Unknown vendor specific property.
"less.lint.unknownVendorSpecificProperties": "ignore",
// Property is ignored due to the display. E.g. with 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect
"less.lint.propertyIgnoredDueToDisplay": "warning",
// Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
"less.lint.important": "ignore",
// Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
"less.lint.float": "ignore",
// Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
"less.lint.idSelector": "ignore",
// Allows setting breakpoint in any file
"debug.allowBreakpointsEverywhere": false,
// Automatically open explorer view on the end of a debug session
"debug.openExplorerOnEnd": false,
// Show variable values inline in editor while debugging
"debug.inlineValues": false,
// Enable/disable default HTML formatter (requires restart)
"html.format.enable": true,
// Maximum amount of characters per line (0 = disable).
"html.format.wrapLineLength": 120,
// List of tags, comma separated, that shouldn't be reformatted. 'null' defaults to all tags listed at https://www.w3.org/TR/html5/dom.html#phrasing-content.
"html.format.unformatted": "a, abbr, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, select, small, span, strong, sub, sup, textarea, tt, var",
// List of tags, comma separated, where the content shouldn't be reformatted. 'null' defaults to the 'pre' tag.
"html.format.contentUnformatted": "pre",
// Indent <head> and <body> sections.
"html.format.indentInnerHtml": false,
// Whether existing line breaks before elements should be preserved. Only works before elements, not inside tags or for text.
"html.format.preserveNewLines": true,
// Maximum number of line breaks to be preserved in one chunk. Use 'null' for unlimited.
"html.format.maxPreserveNewLines": null,
// Format and indent {{#foo}} and {{/foo}}.
"html.format.indentHandlebars": false,
// End with a newline.
"html.format.endWithNewline": false,
// List of tags, comma separated, that should have an extra newline before them. 'null' defaults to "head, body, /html".
"html.format.extraLiners": "head, body, /html",
// Wrap attributes.
"html.format.wrapAttributes": "auto",
// Configures if the built-in HTML language support suggests Angular V1 tags and properties.
"html.suggest.angular1": true,
// Configures if the built-in HTML language support suggests Ionic tags, properties and values.
"html.suggest.ionic": true,
// Configures if the built-in HTML language support suggests HTML5 tags, properties and values.
"html.suggest.html5": true,
// Configures if the built-in HTML language support validates embedded scripts.
"html.validate.scripts": true,
// Configures if the built-in HTML language support validates embedded styles.
"html.validate.styles": true,
// Traces the communication between VS Code and the HTML language server.
"html.trace.server": "off",
// Associate schemas to JSON files in the current project
"json.schemas": [],
// Enable/disable default JSON formatter (requires restart)
"json.format.enable": true,
// Traces the communication between VS Code and the JSON language server.
"json.trace.server": "off",
// A list of URLs or local paths to CSS style sheets to use from the markdown preview. Relative paths are interpreted relative to the folder open in the explorer. If there is no open folder, they are interpreted relative to the location of the markdown file. All '\' need to be written as '\\'.
"markdown.styles": [],
// Sets how YAML front matter should be rendered in the markdown preview. 'hide' removes the front matter. Otherwise, the front matter is treated as markdown content.
"markdown.previewFrontMatter": "hide",
// Controls the font family used in the markdown preview.
"markdown.preview.fontFamily": "'Segoe WPC', 'Segoe UI', 'SFUIText-Light', 'HelveticaNeue-Light', sans-serif",
// Controls the font size in pixels used in the markdown preview.
"markdown.preview.fontSize": 14,
// Controls the line height used in the markdown preview. This number is relative to the font size.
"markdown.preview.lineHeight": 1.6,
// Scrolls the markdown preview to reveal the currently selected line from the editor.
"markdown.preview.scrollPreviewWithEditorSelection": true,
// Mark the current editor selection in the markdown preview.
"markdown.preview.markEditorSelection": true,
// When the markdown preview is scrolled, update the view of the editor.
"markdown.preview.scrollEditorWithPreview": true,
// Enable double clicking in the markdown preview switches to the editor.
"markdown.preview.doubleClickToSwitchToEditor": true,
// Configures if the built-in PHP language suggestions are enabled. The support suggests PHP globals and variables.
"php.suggest.basic": true,
// Enable/disable built-in PHP validation.
"php.validate.enable": true,
// Points to the PHP executable.
"php.validate.executablePath": null,
// Whether the linter is run on save or on type.
"php.validate.run": "onSave",
// Specifies the folder path containing the tsserver and lib*.d.ts files to use.
"typescript.tsdk": null,
// Disables automatic type acquisition. Requires TypeScript >= 2.0.6 and a restart after changing it.
"typescript.disableAutomaticTypeAcquisition": false,
// Check if a global install TypeScript compiler (e.g. tsc) differs from the used TypeScript language service.
"typescript.check.tscVersion": true,
// Enable/disable the references code lens
"typescript.referencesCodeLens.enabled": false,
// Enables tracing of messages send to the TS server.
"typescript.tsserver.trace": "off",
// Complete functions with their parameter signature.
"typescript.useCodeSnippetsOnMethodSuggest": false,
// Enable/disable TypeScript validation.
"typescript.validate.enable": true,
// Enable/disable default TypeScript formatter.
"typescript.format.enable": true,
// Defines space handling after a comma delimiter.
"typescript.format.insertSpaceAfterCommaDelimiter": true,
// Defines space handling after a semicolon in a for statement.
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
// Defines space handling after a binary operator.
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
// Defines space handling after keywords in control flow statement.
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
// Defines space handling after function keyword for anonymous functions.
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
// Defines space handling after opening and before closing non empty parenthesis.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
// Defines space handling after opening and before closing non empty brackets.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
// Defines space handling after opening and before closing template string braces. Requires TypeScript >= 2.0.6.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
// Defines space handling after opening and before closing JSX expression braces. Requires TypeScript >= 2.0.6.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
// Defines whether an open brace is put onto a new line for functions or not.
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
// Defines whether an open brace is put onto a new line for control blocks or not.
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
// Enable/disable JavaScript validation.
"javascript.validate.enable": true,
// Enable/disable default JavaScript formatter.
"javascript.format.enable": true,
// Defines space handling after a comma delimiter.
"javascript.format.insertSpaceAfterCommaDelimiter": true,
// Defines space handling after a semicolon in a for statement.
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
// Defines space handling after a binary operator.
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
// Defines space handling after keywords in control flow statement.
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
// Defines space handling after function keyword for anonymous functions.
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
// Defines space handling after opening and before closing non empty parenthesis.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
// Defines space handling after opening and before closing non empty brackets.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
// Defines space handling after opening and before closing template string braces. Requires TypeScript >= 2.0.6.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
// Defines space handling after opening and before closing JSX expression braces. Requires TypeScript >= 2.0.6.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
// Defines whether an open brace is put onto a new line for functions or not.
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
// Defines whether an open brace is put onto a new line for control blocks or not.
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
// Automatically update extensions
"extensions.autoUpdate": false,
// Customizes which terminal to run on Windows.
"terminal.external.windowsExec": "%COMSPEC%",
// Customizes which terminal application to run on OS X.
"terminal.external.osxExec": "Terminal.app",
// Customizes which terminal to run on Linux.
"terminal.external.linuxExec": "xterm",
// The path of the shell that the terminal uses on Linux.
"terminal.integrated.shell.linux": "sh",
// The command line arguments to use when on the Linux terminal.
"terminal.integrated.shellArgs.linux": [],
// The path of the shell that the terminal uses on OS X.
"terminal.integrated.shell.osx": "sh",
// The command line arguments to use when on the OS X terminal.
"terminal.integrated.shellArgs.osx": [],
// The path of the shell that the terminal uses on Windows. When using shells shipped with Windows (cmd, PowerShell or Bash on Ubuntu), prefer C:\Windows\sysnative over C:\Windows\System32 to use the 64-bit versions.
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
// The command line arguments to use when on the Windows terminal.
"terminal.integrated.shellArgs.windows": [],
// When set, this will prevent the context menu from appearing when right clicking within the terminal, instead it will copy when there is a selection and paste when there is no selection.
"terminal.integrated.rightClickCopyPaste": true,
// Controls the font family of the terminal, this defaults to editor.fontFamily's value.
"terminal.integrated.fontFamily": "",
// Controls whether font ligatures are enabled in the terminal.
"terminal.integrated.fontLigatures": false,
// Controls the font size in pixels of the terminal.
"terminal.integrated.fontSize": 14,
// Controls the line height of the terminal, this number is multipled by the terminal font size to get the actual line-height in pixels.
"terminal.integrated.lineHeight": 1.2,
// Controls whether the terminal cursor blinks.
"terminal.integrated.cursorBlinking": false,
// Controls the style of terminal cursor.
"terminal.integrated.cursorStyle": "block",
// Controls the maximum amount of lines the terminal keeps in its buffer.
"terminal.integrated.scrollback": 1000,
// Controls the whether the terminal emulator will use flow control in order to catch up with the shell process, the main effect of this is that ^C and other signals should be much more responsive when commands give lots of output. You should this disabled if you have custom ^S or ^Q keybindings that override the XOFF and XON signals used.
"terminal.integrated.flowControl": false,
// Controls whether locale variables are set at startup of the terminal, this defaults to true on OS X, false on other platforms.
"terminal.integrated.setLocaleVariables": false,
// An explicit start path where the terminal will be launched, this is used as the current working directory (cwd) for the shell process. This may be particularly useful in workspace settings if the root directory is not a convenient cwd.
"terminal.integrated.cwd": "",
// A set of command IDs whose keybindings will not be sent to the shell and instead always be handled by Code. This allows the use of keybindings that would normally be consumed by the shell to act the same as when the terminal is not focused, for example ctrl+p to launch Quick Open.
"terminal.integrated.commandsToSkipShell": [
"editor.action.toggleTabFocusMode",
"workbench.action.debug.continue",
"workbench.action.debug.restart",
"workbench.action.debug.run",
"workbench.action.debug.start",
"workbench.action.debug.stop",
"workbench.action.openNextRecentlyUsedEditorInGroup",
"workbench.action.openPreviousRecentlyUsedEditorInGroup",
"workbench.action.quickOpen",
"workbench.action.showCommands",
"workbench.action.terminal.clear",
"workbench.action.terminal.copySelection",
"workbench.action.terminal.focus",
"workbench.action.terminal.focusNext",
"workbench.action.terminal.focusPrevious",
"workbench.action.terminal.kill",
"workbench.action.terminal.new",
"workbench.action.terminal.paste",
"workbench.action.terminal.runSelectedText",
"workbench.action.terminal.scrollDown",
"workbench.action.terminal.scrollDownPage",
"workbench.action.terminal.scrollToBottom",
"workbench.action.terminal.scrollToTop",
"workbench.action.terminal.scrollUp",
"workbench.action.terminal.scrollUpPage",
"workbench.action.terminal.toggleTerminal"
],
// Controls if Problems view should automatically reveal files when opening them
"problems.autoReveal": true,
// Enable crash reports to be sent to Microsoft.
// This option requires restart to take effect.
"telemetry.enableCrashReporter": true,
// Enable usage data and errors to be sent to Microsoft.
"telemetry.enableTelemetry": true,
// Remapped keys in normal mode. Allows mapping to vim commands or vscode actions. See README for more.
"vim.otherModesKeyBindings": [],
// Non-recursive remapped keys in normal mode. Allows mapping to vim commands or vscode actions. See README for more.
"vim.otherModesKeyBindingsNonRecursive": [],
// Enable some vim ctrl key commands that override otherwise common operations, like ctrl+c
"vim.useCtrlKeys": true,
// What key should <leader> map to in remappings?
"vim.leader": "\\",
// Color of the search highlight.
"vim.searchHighlightColor": "rgba(150, 150, 255, 0.3)",
// Use system clipboard for unnamed register.
"vim.useSystemClipboard": false,
// Remapped keys in insert mode. Allows mapping to vim commands or vscode actions. See README for more.
"vim.insertModeKeyBindings": [],
// Non-recursive keybinding overrides to use for insert mode. Allows mapping to vim commands or vscode actions. See README for more.
"vim.insertModeKeyBindingsNonRecursive": [],
// Width to word-wrap to when using gq.
"vim.textwidth": 80,
// Timeout in milliseconds for remapped commands
"vim.timeout": 1000,
// Use a non blinking block cursor.
"vim.useSolidBlockCursor": false,
// Number of lines to scroll with CTRL-U and CTRL-D commands.
"vim.scroll": 20,
// Show the text of any command you are in the middle of writing.
"vim.showcmd": true,
// keywords contain alphanumeric characters and '_'
"vim.iskeyword": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
// Ignore case in search patterns.
"vim.ignorecase": true,
// Override the 'ignorecase' option if the search pattern contains upper case characters.
"vim.smartcase": true,
// Enable the EasyMotion plugin for Vim.
"vim.easymotion": false,
// Show all matches of the most recent search pattern
"vim.hlsearch": false,
// Don't worry about this one.
"vim.hl": true,
// Show where a / search matches as you type it.
"vim.incsearch": true,
// How much search or command history should be remembered
"vim.history": 50,
// Indent code automatically.
"vim.autoindent": true,
// Start in Insert Mode.
"vim.startInInsertMode": false,
// Scans builtin modules as well
"node-module-intellisense.scanBuiltinModules": true,
// Scans devDependencies as well
"node-module-intellisense.scanDevDependencies": true,
// Scans file modules as well
"node-module-intellisense.scanFileModules": true,
// File module extensions
"node-module-intellisense.fileModuleExtensions": [
".js",
".jsx",
".ts",
".d.ts",
".tsx",
".vue",
".json"
],
// Configure settings to be overridden for a set of language identifiers.
"[]": {},
// The full path of the clang-format executable.
"C_Cpp.clang_format_path": null,
// Coding style, currently supports: Visual Studio, LLVM, Google, Chromium, Mozilla, WebKit. Use "file" to load the style from a .clang-format file in the current or parent directory. Use "{key: value, ...}" to set specific parameters, e.g.: "{ BasedOnStyle: LLVM, IndentWidth: 8 }"
"C_Cpp.clang_format_style": "file",
// Name of the predefined style used as a fallback in case clang-format is invoked with style "file" but the .clang-format file is not found. Possible values are Visual Studio, LLVM, Google, Chromium, Mozilla, WebKit, or none.
"C_Cpp.clang_format_fallbackStyle": "Visual Studio",
// If set, overrides the include sorting behavior determined by the SortIncludes parameter.
"C_Cpp.clang_format_sortIncludes": null,
// Enable clang-format on save.
"C_Cpp.clang_format_formatOnSave": false,
// Controls auto completion for C/C++ code. "Default" uses an experimental recursive directory tag parser (as of right now). "Disabled" uses the word based completion provided by Visual Studio Code.
"C_Cpp.autocomplete": "Default",
// "Default" to enable formatting of C/C++ code via the C/C++ language extension. "disabled" to disable code formatting using the C/C++ language extension. You must restart VSCode in order for changes to this setting to take effect.
"C_Cpp.formatting": "Default",
// A path to file containing the configuration options for js-beautify. If the .jsbeautifyrc file exists in project root, it overrides this configuration.
"beautify.config": null,
// Link file types to the beautifier type
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautify"
]
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html"
]
},
// Suppress the warning that the .NET CLI is not on the path.
"csharp.suppressDotnetInstallWarning": false,
// Suppress the notification window to perform a 'dotnet restore' when dependencies can't be resolved.
"csharp.suppressDotnetRestoreNotification": false,
// Specifies the full path to the OmniSharp server.
"omnisharp.path": null,
// Launch OmniSharp with Mono.
"omnisharp.useMono": false,
// Specifies the level of logging output from the OmniSharp server.
"omnisharp.loggingLevel": "information",
// Specifies whether the OmniSharp server will be automatically started or not. If false, OmniSharp can be started with the 'Restart OmniSharp' command
"omnisharp.autoStart": true,
// The time Visual Studio Code will wait for the OmniSharp server to start. Time is expressed in seconds.
"omnisharp.projectLoadTimeout": 60,
// The maximum number of projects to be shown in the 'Select Project' dropdown (maximum 250).
"omnisharp.maxProjectResults": 250,
// Specifes whether OmniSharp should use VS Code editor settings for C# code formatting (use of tabs, indentation size).
"omnisharp.useEditorFormattingSettings": true,
// A name of preset package that switches UI and features. Allowed values are "default", "largePalette", "simple", "compact", "compact2" or "byPalette".
"colorHelper.pickerForm": "default",
// A path to directory that contains your color palettes. For information about color palettes, see `README.md` that is found in that directory.
"colorHelper.storeDir": "",
// Stands by for a quick response. After the dialog box is opened, it stays in memory even after it is closed until VS Code is exited (or VS Code might unload it).
"colorHelper.resident": false,
// An array that indicates the order of formats in UI (e.g. drop-down list). Allowed items are "hsb", "hsl", "hwb", "rgb", "hex", "named", "cmyk" or "gray". This array doesn't have to contain all formats. The formats that are not contained in the array are moved to the top of the list in UI automatically when it was used. If you want to make the list static, specify all formats in the order you desire, e.g. ["hsb", "hsl", "hwb", "rgb", "hex", "named", "cmyk", "gray"].
"colorHelper.formatsOrder": [],
// A list of vscode language names where the extension should be used.
"css_peek.activeLanguages": [
"html",
"ejs"
],
// A list of extensions that should be tried for finding peeked files.
"css_peek.searchFileExtensions": [
".css",
".scss",
".less"
],
// Number of seconds the list of `.gitignore` files retrieved from github will be cached
"gitignore.cacheExpirationInterval": 3600,
// Informations to display in history as label
"gitHistory.displayLabel": "${name} <${email}> on ${date}",
// Informations to display in history as description
"gitHistory.displayDescription": "${message}",
// Controls after how many characters text is wrapped.
"rewrap.wrappingColumn": 0,
// When wrapping lines that end in a period, adds two spaces after that sentence in the wrapped text.
"rewrap.doubleSentenceSpacing": false,
// The list of attributes to add support for, and what prefixes each one should receive.
"css-auto-prefix.prefixes": {
"transform": [
"webkit",
"moz",
"ms",
"o"
],
"transition": [
"webkit",
"moz",
"ms",
"o"
],
"border-radius": [
"webkit",
"moz",
"ms",
"o"
],
"animation": [
"webkit"
],
"box-reflect": [
"webkit"
],
"filter": [
"webkit"
],
"font-feature-settings": [
"webkit",
"moz"
],
"backface-visibility": [
"webkit"
],
"box-decoration-break": [
"webkit"
],
"hyphens": [
"webkit",
"moz",
"ms"
],
"marquee-direction": [
"webkit"
],
"marquee-play-count": [
"webkit"
],
"marquee-speed": [
"webkit"
],
"marquee-style": [
"webkit"
],
"text-combine-upright": [
"webkit",
"moz",
"ms"
],
"text-decoration-color": [
"moz"
],
"text-decoration-line": [
"moz"
],
"text-decoration-style": [
"moz"
],
"text-orientation": [
"webkit"
],
"writing-mode": [
"webkit",
"ms"
]
},
// Control whether a new line is inserted at the end of the file.
"files.insertFinalNewline": false,
// If set to true the new version message won't be shown anymore.
"vsicons.dontShowNewVersionMessage": false,
// If set to true the extension will restart automatically on project detection
"vsicons.projectDetection.autoReload": false,
// If set to true the extension will disable the project detection
"vsicons.projectDetection.disableDetect": false,
// If set to true the extension will match some of the common Angular patterns
"vsicons.presets.angular": true,
// If set to true the extension will use the official JS icon
"vsicons.presets.jsOfficial": false,
// If set to true the extension will use the official TS icon
"vsicons.presets.tsOfficial": false,
// If set to true the extension will use the official JSON icon
"vsicons.presets.jsonOfficial": false,
// If set to true all folders will be hidden
"vsicons.presets.hideFolders": false,
// These custom associations will override the file icon associations defined by default.
"vsicons.associations.files": [],
// These custom associations will override the folder icon associations defined by default.
"vsicons.associations.folders": [],
// This setting will let you change default dark file icon.
"vsicons.associations.fileDefault.file": null,
// This setting will let you change default light file icon.
"vsicons.associations.fileDefault.file_light": null,
// This setting will let you change default dark folder icon.
"vsicons.associations.folderDefault.folder": null,
// This setting will let you change default light folder icon.
"vsicons.associations.folderDefault.folder_light": null,
// Path to Python, you can use a custom version of Python by modifying this setting to include the full path.
"python.pythonPath": "python",
// Path to directory containing the Jedi library (this path will contain the 'Jedi' sub directory).
"python.jediPath": "",
// Path to isort script, default using inner version
"python.sortImports.path": "",
// Arguments passed in. Each argument is a separate item in the array.
"python.sortImports.args": [],
// Whether to lint Python files.
"python.linting.enabled": true,
// Whether to lint Python files using prospector.
"python.linting.prospectorEnabled": false,
// Whether to lint Python files using pylint.
"python.linting.pylintEnabled": true,
// Whether to lint Python files using pep8
"python.linting.pep8Enabled": false,
// Whether to lint Python files using flake8
"python.linting.flake8Enabled": false,
// Whether to lint Python files using pydocstyle
"python.linting.pydocstyleEnabled": false,
// Whether to lint Python files using mypy.
"python.linting.mypyEnabled": false,
// Whether to lint Python files when modified.
"python.linting.lintOnTextChange": true,
// Whether to lint Python files when saved.
"python.linting.lintOnSave": true,
// Controls the maximum number of problems produced by the server.
"python.linting.maxNumberOfProblems": 100,
// Severity of Pylint message type 'Convention/C'.
"python.linting.pylintCategorySeverity.convention": "Information",
// Severity of Pylint message type 'Refactor/R'.
"python.linting.pylintCategorySeverity.refactor": "Hint",
// Severity of Pylint message type 'Warning/W'.
"python.linting.pylintCategorySeverity.warning": "Warning",
// Severity of Pylint message type 'Error/E'.
"python.linting.pylintCategorySeverity.error": "Error",
// Severity of Pylint message type 'Fatal/F'.
"python.linting.pylintCategorySeverity.fatal": "Error",
// Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.
"python.linting.prospectorPath": "prospector",
// Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.
"python.linting.pylintPath": "pylint",
// Path to pep8, you can use a custom version of pep8 by modifying this setting to include the full path.
"python.linting.pep8Path": "pep8",
// Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.
"python.linting.flake8Path": "flake8",
// Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.
"python.linting.pydocstylePath": "pydocstyle",
// Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.
"python.linting.mypyPath": "mypy",
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.prospectorArgs": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.pylintArgs": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.pep8Args": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.flake8Args": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.pydocstyleArgs": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.mypyArgs": [],
// The output window name for the linting messages, defaults to Python output window.
"python.linting.outputWindow": "Python",
// Provider for formatting. Possible options include 'autopep8' and 'yapf'.
"python.formatting.provider": "autopep8",
// Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.
"python.formatting.autopep8Path": "autopep8",
// Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.
"python.formatting.yapfPath": "yapf",
// Arguments passed in. Each argument is a separate item in the array.
"python.formatting.autopep8Args": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.formatting.yapfArgs": [],
// Format the document upon saving.
"python.formatting.formatOnSave": false,
// The output window name for the formatting messages, defaults to Python output window.
"python.formatting.outputWindow": "Python",
// List of paths to libraries and the like that need to be imported by auto complete engine. E.g. when using Google App SDK, the paths are not in system path, hence need to be added into this list.
"python.autoComplete.extraPaths": [],
// Automatically add brackets for functions.
"python.autoComplete.addBrackets": false,
// Fully qualified path to tag file (exuberant ctag file), used to provide workspace symbols.
"python.workspaceSymbols.tagFilePath": "${workspaceRoot}/tags",
// Set to 'false' to disable Workspace Symbol provider using ctags.
"python.workspaceSymbols.enabled": true,
// Whether to re-build the tags file on start (deaults to true).
"python.workspaceSymbols.rebuildOnStart": true,
// Whether to re-build the tags file on when changes made to python files are saved.
"python.workspaceSymbols.rebuildOnFileSave": true,
// Fully qualilified path to the ctags executable (else leave as ctags, assuming it is in current path).
"python.workspaceSymbols.ctagsPath": "ctags",
// Pattern used to exclude files and folders from ctags (see http://ctags.sourceforge.net/ctags.html).
"python.workspaceSymbols.exclusionPatterns": [],
// Where to prompt to configure a test framework if potential tests directories are discovered.
"python.unitTest.promptToConfigure": true,
// Port number used for debugging of unittests.
"python.unitTest.debugPort": 3000,
// Whether to enable or disable unit testing using nosetests.
"python.unitTest.nosetestsEnabled": false,
// Path to nosetests, you can use a custom version of nosetests by modifying this setting to include the full path.
"python.unitTest.nosetestPath": "nosetests",
// Whether to enable or disable unit testing using pytest.
"python.unitTest.pyTestEnabled": false,
// Path to pytest (py.test), you can use a custom version of pytest by modifying this setting to include the full path.
"python.unitTest.pyTestPath": "py.test",
// Arguments passed in. Each argument is a separate item in the array.
"python.unitTest.nosetestArgs": [],
// Arguments passed in. Each argument is a separate item in the array.
"python.unitTest.pyTestArgs": [],
// Whether to enable or disable unit testing using unittest.
"python.unitTest.unittestEnabled": false,
// Arguments passed in. Each argument is a separate item in the array.
"python.unitTest.unittestArgs": [
"-v",
"-s",
".",
"-p",
"*test*.py"
],
// Patterns used to exclude files or folders from being linted.
"python.linting.ignorePatterns": [
".vscode/*.py",
"**/site-packages/**/*.py"
],
// Whether to lint Python files using pylama.
"python.linting.pylamaEnabled": false,
// Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.
"python.linting.pylamaPath": "pylama",
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.pylamaArgs": [],
// The output window name for the unit test messages, defaults to Python output window.
"python.unitTest.outputWindow": "Python Test Log",
// When executing a file in the terminal, whether to use execute in the file's directory, instead of the current open folder.
"python.terminal.executeInFileDir": false,
// Python launch arguments to use when executing a file in the terminal.
"python.terminal.launchArgs": [],
// Whether to appen the results to results window, else clear and display.
"python.jupyter.appendResults": true,
// Default kernel to be used. By default the first available kernel is used.
"python.jupyter.defaultKernel": "",
// Code executed when the kernel starts. Such as the default of '%matplotlib inline'. Individual lines can be placed in separate items of the array.
"python.jupyter.startupCode": [
"%matplotlib inline"
],
// Controls whether eslint is enabled for JavaScript files or not.
"eslint.enable": true,
// A path added to NODE_PATH when resolving the eslint module.
"eslint.nodePath": null,
// Uses the legacy module resolving.
"eslint._legacyModuleResolve": false,
// The eslint options object to provide args normally passed to eslint when executed from a command line (see http://eslint.org/docs/developer-guide/nodejs-api#cliengine).
"eslint.options": {},
// Traces the communication between VSCode and the eslint linter service.
"eslint.trace.server": "off",
// Run the linter on save (onSave) or on type (onType)
"eslint.run": "onType",
// Turns auto fix on save on or off.
"eslint.autoFixOnSave": false,
//
"eslint.workingDirectories": [],
// An array of language ids which should be validated by ESLint
"eslint.validate": [
"javascript",
"javascriptreact"
],
// Adds the file extension to a import statements
"path-intellisense.extensionOnImport": false,
// Mappings for paths
"path-intellisense.mappings": {},
// Show hidden files
"path-intellisense.showHiddenFiles": false,
// Automatically adds slash after directory
"path-intellisense.autoSlashAfterDirectory": false,
// Default registry to push to, empty string will push to Dockerhub.
"docker.defaultRegistry": "",
// Path within registry to push to.
"docker.defaultRegistryPath": "",
// Turn linting of Dockerfiles on or off.
"docker.enableLinting": false,
// Full path to the linting rules file to use. See https://github.com/projectatomic/dockerfile_lint#extending-and-customizing-rule-files) for sample files and how to create your own.
"docker.linterRuleFile": "",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment