Skip to content

Instantly share code, notes, and snippets.

@ttowncompiled
Created May 26, 2017 19:30
Show Gist options
  • Save ttowncompiled/a0c57ee8f017cb309de727e0100ea59b to your computer and use it in GitHub Desktop.
Save ttowncompiled/a0c57ee8f017cb309de727e0100ea59b to your computer and use it in GitHub Desktop.
VS Code user settings
// Overwrite settings by placing them into your settings file.
// See http://go.microsoft.com/fwlink/?LinkId=808995 for the most commonly used settings.
{
// Editor
// Controls the font family.
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
// Controls the font weight.
"editor.fontWeight": "normal",
// Controls the font size.
"editor.fontSize": 14,
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 0,
// Controls visibility of line numbers
"editor.lineNumbers": true,
// Controls visibility of the glyph margin
"editor.glyphMargin": false,
// Columns at which to show vertical rulers
"editor.rulers": [80],
// 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": 2,
// 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": 80,
// Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns).
"editor.wordWrap": true,
// Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'.
"editor.wrappingIndent": "indent",
// 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 suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
"editor.acceptSuggestionOnEnter": true,
// Controls whether snippets are shown with other suggestions and how they are sorted.
"editor.snippetSuggestions": "bottom",
// Enable word based suggestions.
"editor.wordBasedSuggestions": true,
// 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 whether the editor should render whitespace characters
"editor.renderWhitespace": false,
// Controls whether the editor should render control characters
"editor.renderControlCharacters": false,
// Controls whether the editor should render indent guides
"editor.renderIndentGuides": false,
// Controls whether the editor should render the current line highlight
"editor.renderLineHighlight": true,
// Controls if the editor shows code lenses
"editor.codeLens": true,
// Controls whether the editor has code folding enabled
"editor.folding": 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,
// Emmet
// 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": [],
// Workbench
// Controls if opened editors should show in tabs or not.
"workbench.editor.showTabs": 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,
// Window
// When enabled, will open files in a new window instead of reusing an existing instance.
"window.openFilesInNewWindow": true,
// 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": true,
// 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,
// Files
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/*.pyc": true,
"**/__init__.py": true,
"**/requirements.txt": true,
"**/LICENSE": true,
"**/README.md": true,
"**/.gitignore": 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": "\n",
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true,
// 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,
"**/node_modules/**": true
},
// File Explorer
// Number of editors shown in the Open Editors pane. Set it to 0 to hide the pane.
"explorer.openEditors.visible": 0,
// 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 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,
// Search
// 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,
// Git
// 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": false,
// Controls the git badge counter.
"git.countBadge": "all",
// HTTP
// 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,
// Update
// Configure whether you receive automatic updates from an update channel. Requires a restart after change.
"update.channel": "default",
// CSS
// 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",
// SCSS (Sass)
// 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",
// LESS
// 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",
// HTML
// 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, script, select, small, span, strong, sub, sup, textarea, tt, var",
// 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",
// 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,
// JSON
// Associate schemas to JSON files in the current project
"json.schemas": [],
// Markdown
// 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": [],
// PHP
// Whether php validation is enabled or not.
"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",
// TypeScript
// Specifies the folder path containing the tsserver and lib*.d.ts files to use.
"typescript.tsdk": null,
// Enables tracing of messages send to the TS server
"typescript.tsserver.trace": "off",
// Enables experimental auto build. Requires 1.9 dev or 2.x tsserver version and a restart of VS Code after changing it.
"typescript.tsserver.experimentalAutoBuild": false,
// Complete functions with their parameter signature.
"typescript.useCodeSnippetsOnMethodSuggest": false,
// Enable / disable TypeScript validation
"typescript.validate.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 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,
// 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 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,
// Extensions
// Automatically update extensions
"extensions.autoUpdate": true,
// External Terminal
// Customizes which terminal to run on Windows.
"terminal.external.windowsExec": "%COMSPEC%",
// Customizes which terminal application to run on OS X.
"terminal.external.osxExec": "iTerm.app",
// Customizes which terminal to run on Linux.
"terminal.external.linuxExec": "xterm",
// Integrated Terminal
// The path of the shell that the terminal uses on Linux.
"terminal.integrated.shell.linux": "/bin/bash",
// 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": "/bin/bash",
// 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": "cmd.exe",
// 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, this defaults to editor.fontSize's value.
"terminal.integrated.fontSize": 0,
// 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 whether locale variables are set at startup of the terminal, this defaults to true on OS X, false on other platforms.
"terminal.integrated.setLocaleVariables": true,
// 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.quickOpen",
"workbench.action.showCommands",
"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.scrollUp",
"workbench.action.terminal.toggleTerminal"
],
// Problems View
// Controls if Problems view should automatically reveal files when opening them
"problems.autoReveal": true,
// Telemetry
// Enable usage data and errors to be sent to Microsoft.
"telemetry.enableTelemetry": true,
// Enable crash reports to be sent to Microsoft.
// This option requires restart to take effect.
"telemetry.enableCrashReporter": true,
// Run Code configuration
// Set the executor of each language.
"code-runner.executorMap": {
"javascript": "node",
"php": "php",
"python": "python",
"perl": "perl",
"ruby": "ruby",
"go": "go run",
"lua": "lua",
"groovy": "groovy",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "",
"shellscript": "bash",
"fsharp": "fsi",
"csharp": "scriptcs",
"vbscript": "cscript //Nologo"
},
// Set the executor of each file extension.
"code-runner.executorMapByFileExtension": {
".vbs": "cscript //Nologo"
},
// Set the mapping of languageId to file extension.
"code-runner.languageIdToFileExtensionMap": {
"bat": ".bat",
"powershell": ".ps1"
},
// Set the default language to run.
"code-runner.defaultLanguage": "",
// Set the working directory.
"code-runner.cwd": "",
// Whether to use the directory of the file to be executed as the working directory.
"code-runner.fileDirectoryAsCwd": false,
// Whether to clear previous output before each run.
"code-runner.clearPreviousOutput": false,
// Whether to save the file before running.
"code-runner.saveFileBeforeRun": false,
// Whether to enable AppInsights to track user telemetry data.
"code-runner.enableAppInsights": true,
// Align extension configuration
"align.leftSeparators": [
":"
],
"align.rightSeparators": [
"=",
"+=",
"-=",
"*=",
"/=",
"?=",
"|=",
"%=",
".=",
"=>"
],
"align.spaceSeparators": [
"=",
"+=",
"-=",
"*=",
"/=",
"?=",
"|=",
"%=",
".=",
"=>"
],
"align.ignoreSeparators": [
"::"
],
// Visual Studio Code Slack configuration
// Team token
"slack.teamToken": "",
// Slack username
"slack.username": "Code",
// Slack avatar url
"slack.avatarUrl": "http://i.imgur.com/O8dDZpb.png",
// final newline configuration
// Control whether a new line is inserted at the end of the file.
"files.insertFinalNewline": true,
// vscode-icons configuration
// If set to true folder icons won't be shown.
"vsicons.hideFolders": false,
// If set to true custom folder icons won't be shown.
"vsicons.hideCustomFolderIcons": false,
// If set to true tab icons won't be shown.
"vsicons.hideIconsInTabs": false,
// If set to true icons won't be shown in 'open editors' section.
"vsicons.hideIconsEditors": false,
// If set to true file and folder associations will be honored.
"vsicons.useFileAssociations": false,
// This is an associative array that must be filled with arrays whose first member is a regular expression matching the extension that you want to associate and the second member is the name of the extension whose icon you want to use.
"vsicons.associations": [],
// If set you will change the location of the icons.zip file that vscode-icons uses in order to get the icons into your machine. You can use a well-formed URI or a local path.
"vsicons.icons": "",
// Runner configuration
// Ignore shebang line
"runner.ignoreShebang": false,
// Clear Previous Outputs
"runner.clearPreviousOutput": true,
// Specify file extension as key, specify execuable as value
"runner.extensionMap": {},
// Specify language name as key, specify execuable as value
"runner.languageMap": {},
// Specify replacement of shebang line
"runner.shebangMap": {},
// Bookmarks Configuration
// Allow bookmarks to be saved and restored, even if you close or change the Project
"bookmarks.saveBookmarksBetweenSessions": false,
// Path to another image to be presented as Bookmark
"bookmarks.gutterIconPath": "",
// Allow navigation look for bookmarks in all files in the project, instead of only the current
"bookmarks.navigateThroughAllFiles": false,
// The bookmarks will be glued to the line of code instead of the line of the file
"bookmarks.useStickyBookmarks": true,
// Python Configuration
// Path to Python, you can use a custom version of Python by modifying this setting to include the full path.
"python.pythonPath": "python",
// 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": false,
// Whether to lint Python files using pep8
"python.linting.pep8Enabled": true,
// 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 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": "Hint",
// 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",
// 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": ["--max-line-length=80"],
// 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": [],
// 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": [],
// 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"
],
// The output window name for the unit test messages, defaults to Python output window.
"python.unitTest.outputWindow": "Python Test Log",
// Git History configuration
// Informations to display in history as label
"gitHistory.displayLabel": "${name} <${email}> on ${date}",
// Informations to display in history as description
"gitHistory.displayDescription": "${message}",
"vsicons.dontShowNewVersionMessage": true,
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "vscode-icons",
"java.errors.incompleteClasspath.severity": "ignore"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment