Created
June 9, 2023 18:12
-
-
Save YannBirba/cbfe6b0f9907a7e15431ea5f36758881 to your computer and use it in GitHub Desktop.
VS code default settings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"liveServer.settings.donotVerifyTags": true, | |
"editor.minimap.enabled": false, | |
"editor.autoClosingBrackets": "always", | |
"editor.autoClosingOvertype": "always", | |
"editor.autoClosingQuotes": "always", | |
"workbench.iconTheme": "material-icon-theme", | |
"liveServer.settings.CustomBrowser": "chrome", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"oneDarkPro.vivid": true, | |
"oneDarkPro.bold": true, | |
"workbench.colorTheme": "One Dark Pro", | |
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)", | |
"editor.wordWrap": "on", | |
"editor.codeLensFontFamily": "JetBrainsMono Nerd Font, JetBrains Mono, Consolas, 'Courier New', monospace", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.fastScrollSensitivity": 10, | |
"editor.smoothScrolling": true, | |
"editor.tabCompletion": "on", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.cursorBlinking": "smooth", | |
"editor.cursorWidth": 3, | |
"diffEditor.wordWrap": "on", | |
"editor.quickSuggestionsDelay": 0, | |
"editor.inlineSuggest.enabled": true, | |
"editor.suggest.insertMode": "replace", | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"files.autoSaveDelay": 1000, | |
"workbench.commandPalette.history": 100, | |
"workbench.list.smoothScrolling": true, | |
"workbench.preferredHighContrastColorTheme": "One Dark Pro", | |
"workbench.preferredLightColorTheme": "One Dark Pro", | |
"workbench.tips.enabled": false, | |
"workbench.view.alwaysShowHeaderActions": true, | |
"breadcrumbs.enabled": false, | |
"workbench.editor.scrollToSwitchTabs": true, | |
"workbench.editor.tabCloseButton": "off", | |
"workbench.editor.untitled.labelFormat": "name", | |
"workbench.editor.wrapTabs": true, | |
"zenMode.restore": false, | |
"debug.allowBreakpointsEverywhere": true, | |
"update.mode": "start", | |
"telemetry.telemetryLevel": "off", | |
"css.lint.duplicateProperties": "error", | |
"scss.lint.compatibleVendorPrefixes": "warning", | |
"scss.lint.duplicateProperties": "warning", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.formatOnType": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"files.eol": "\n", | |
"remote.SSH.remotePlatform": { | |
"yannbirba.fr": "linux" | |
}, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.views.commits.showBranchComparison": false, | |
"gitlens.views.commits.avatars": false, | |
"gitlens.defaultDateFormat": "D MMMM YYYY, h:mm", | |
"gitlens.defaultDateShortFormat": "D MMMM YYYY", | |
"gitlens.defaultTimeFormat": "h:mm", | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "JetBrainsMono Nerd Font, JetBrains Mono, Consolas, 'Courier New', monospace", | |
"editor.fontWeight": "400", | |
"editor.fontSize": 13, | |
"editor.letterSpacing": 0.25, | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false, | |
"yaml": true, | |
"typescript": true, | |
"javascript": true, | |
"php": true, | |
"sql": true, | |
"typescriptreact": true, | |
"css": true | |
}, | |
"files.autoSave": "afterDelay", | |
"window.title": "${remoteName}${separator}${rootName}${separator}${dirty}${activeEditorShort}", | |
"workbench.editor.enablePreview": false, | |
"redhat.telemetry.enabled": false, | |
"editor.bracketPairColorization.enabled": true, | |
"inline-parameters.borderRadius": "5em", | |
"inline-parameters.fontWeight": "300", | |
"inline-parameters.border": "1px solid #333", | |
"tailwindCSS.emmetCompletions": true, | |
"tailwindCSS.lint.cssConflict": "error", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[postcss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[dockercompose]": { | |
"editor.tabSize": 4, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.autoIndent": "advanced", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.insertSpaces": true, | |
"gitlens.codeLens.scopes": ["document"], | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
} | |
}, | |
"[sql]": { | |
"editor.defaultFormatter": "cweijan.vscode-database-client2" | |
}, | |
"workbench.startupEditor": "none", | |
"workbench.sideBar.location": "right", | |
"[graphql]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.codeActionsOnSave": { | |
"editor.fixAll.eslint": true | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"typescript", | |
"javascriptreact", | |
"typescriptreact", | |
"html" | |
], | |
"typescript.autoClosingTags": true, | |
"javascript.autoClosingTags": true, | |
"[xml]": { | |
"editor.defaultFormatter": "redhat.vscode-xml" | |
}, | |
"js/ts.implicitProjectConfig.checkJs": true, | |
"js/ts.implicitProjectConfig.experimentalDecorators": true, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, | |
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true, | |
"javascript.format.semicolons": "insert", | |
"javascript.preferences.quoteStyle": "double", | |
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"js/ts.implicitProjectConfig.target": "ES2022", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"[php]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"typescript.preferences.includePackageJsonAutoImports": "on", | |
"prettier.enableDebugLogs": true, | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"php-cs-fixer.lastDownload": 1686061313389, | |
"php.validate.enable": true, | |
"php.validate.run": "onType", | |
"rapidapi.terminalLink.enabled": true, | |
"window.commandCenter": true, | |
"editor.tabSize": 2, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [] | |
}, | |
"eslint.packageManager": "npm", | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[yaml]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 4, | |
"editor.autoIndent": "advanced", | |
"gitlens.codeLens.scopes": ["document"], | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
} | |
}, | |
"editor.renderWhitespace": "trailing", | |
"editor.linkedEditing": true, | |
"editor.occurrencesHighlight": false, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"explorer.autoReveal": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"workbench.tree.renderIndentGuides": "always", | |
"workbench.tree.indent": 15, | |
"emmet.triggerExpansionOnTab": true, | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"editor.lineHeight": 2, | |
"material-icon-theme.hidesExplorerArrows": true, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.hovers.currentLine.enabled": true, | |
"javascript.preferences.importModuleSpecifierEnding": "js", | |
// "typescript.preferences.importModuleSpecifierEnding": "js", | |
"[rust]": { | |
"editor.defaultFormatter": "rust-lang.rust-analyzer" | |
}, | |
"totalTypeScript.hideAllTips": true, | |
"totalTypeScript.hideBasicTips": true, | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [80], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false | |
}, | |
"dart.flutterHotReloadOnSave": "allIfDirty", | |
"dart.hotReloadOnSave": "allIfDirty", | |
"dart.hotReloadProgress": "statusBar", | |
"dotenv.enableAutocloaking": false, | |
"database-client.showFilter": true, | |
"terminal.integrated.profiles.windows": { | |
"PowerShell": { | |
"source": "PowerShell", | |
"icon": "terminal-powershell" | |
}, | |
"Command Prompt": { | |
"path": [ | |
"${env:windir}\\Sysnative\\cmd.exe", | |
"${env:windir}\\System32\\cmd.exe" | |
], | |
"args": [], | |
"icon": "terminal-cmd" | |
}, | |
"Git Bash": { | |
"source": "Git Bash", | |
"icon": "terminal-bash" | |
}, | |
"Ubuntu (WSL)": { | |
"path": "C:\\Windows\\System32\\wsl.exe", | |
"args": ["-d", "Ubuntu"], | |
"icon": "terminal-ubuntu" | |
} | |
}, | |
"terminal.integrated.showExitAlert": true, | |
"git.ignoreMissingGitWarning": true, | |
"[shellscript]": { | |
"editor.defaultFormatter": "foxundermoon.shell-format", | |
"editor.tabSize": 4 | |
}, | |
"[dotenv]": { | |
"editor.defaultFormatter": "foxundermoon.shell-format" | |
}, | |
"[hosts]": { | |
"editor.defaultFormatter": "foxundermoon.shell-format" | |
}, | |
"terminal.integrated.env.linux": {}, | |
"[ignore]": { | |
"editor.defaultFormatter": "foxundermoon.shell-format" | |
}, | |
"terminal.integrated.env.windows": {}, | |
"[properties]": { | |
"editor.defaultFormatter": "foxundermoon.shell-format" | |
}, | |
"git.openRepositoryInParentFolders": "never", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"typescript": "typescriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"html": { | |
"filters": "bem" | |
} | |
}, | |
"liveServer.settings.host": "localhost", | |
"liveServer.settings.port": 3000, | |
"[smarty]": { | |
"editor.defaultFormatter": "aswinkumar863.smarty-template-support" | |
}, | |
"console-ninja.showWhatsNew": false, | |
"window.zoomLevel": -1, | |
"vscode-neovim.useWSL": true, | |
"vscode-neovim.mouseSelectionStartVisualMode": true, | |
"stylelint.packageManager": "pnpm", | |
"stylelint.reportDescriptionlessDisables": true, | |
"workbench.preferredDarkColorTheme": "One Dark Pro", | |
"github.copilot.advanced": { | |
"debug.showScores": true | |
}, | |
"editor.largeFileOptimizations": true, | |
"editor.matchBrackets": "near", | |
"editor.maxTokenizationLineLength": 10000, | |
"diffEditor.diffAlgorithm": "advanced", | |
"workbench.commandPalette.experimental.suggestCommands": true, | |
"css.format.spaceAroundSelectorSeparator": true, | |
"css.lint.emptyRules": "error", | |
"css.lint.fontFaceProperties": "error", | |
"css.lint.float": "warning", | |
"css.lint.propertyIgnoredDueToDisplay": "error", | |
"css.lint.unknownAtRules": "error", | |
"css.lint.unknownProperties": "error", | |
"css.lint.unknownVendorSpecificProperties": "warning", | |
"css.lint.vendorPrefix": "error", | |
"css.lint.zeroUnits": "warning", | |
"scss.format.spaceAroundSelectorSeparator": true, | |
"scss.lint.emptyRules": "error", | |
"scss.lint.fontFaceProperties": "error", | |
"scss.lint.float": "warning", | |
"scss.lint.propertyIgnoredDueToDisplay": "error", | |
"scss.lint.unknownAtRules": "error", | |
"scss.lint.unknownProperties": "error", | |
"scss.lint.unknownVendorSpecificProperties": "warning", | |
"scss.lint.vendorPrefix": "error", | |
"scss.lint.zeroUnits": "warning", | |
"scss.lint.important": "warning", | |
"panda.color-hints.color-preview.enabled": true, | |
"panda.diagnostics.enabled": true, | |
"panda.diagnostics.invalid-token-path": "error", | |
"panda.hovers.instances.enabled": true, | |
"panda.hovers.semantic-colors.enabled": true, | |
"panda.hovers.tokens.conditions.enabled": true, | |
"panda.hovers.tokens.css-preview.enabled": true, | |
"panda.rem-to-px.enabled": true, | |
"liveServer.settings.wait": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment