Created
January 2, 2024 12:59
-
-
Save Sashkan/91a220ce76093a08c4316a3a0476b313 to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.detectIndentation": false, | |
"files.insertFinalNewline": true, | |
"files.hotExit": "off", | |
"editor.trimAutoWhitespace": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.useTabStops": true, | |
"keyboard.dispatch": "keyCode", | |
"editor.formatOnType": true, // format code as you type | |
"editor.formatOnSave": true, // format code when you hit save | |
"files.trimFinalNewlines": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"git.autofetch": true, | |
"emmet.showSuggestionsAsSnippets": true, | |
"explorer.openEditors.visible": 0, | |
"tailwindCSS.emmetCompletions": true, | |
"tailwindCSS.colorDecorators": true, | |
"prettier.singleQuote": true, | |
"git.enableSmartCommit": true, | |
"emmet.syntaxProfiles": { | |
"xml": { | |
"attr_quotes": "single" | |
}, | |
"html": { | |
"attr_quotes": "single" | |
}, | |
"js": { | |
"attr_quotes": "single", | |
"self_closing_tag": true | |
}, | |
"jsx": { | |
"attr_quotes": "single", | |
"self_closing_tag": true | |
} | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
// "eslint.options": {}, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.folding": false, | |
"editor.glyphMargin": false, | |
"editor.lightbulb.enabled": false, | |
"editor.minimap.enabled": false, | |
"editor.smoothScrolling": true, | |
"files.autoSaveDelay": 60000, | |
"eslint.run": "onSave", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"vsicons.dontShowNewVersionMessage": true, | |
"prettier.jsxSingleQuote": true, | |
"prettier.trailingComma": "es5", | |
"eslint.lintTask.options": "", | |
"scss.lint.duplicateProperties": "warning", | |
"editor.suggestSelection": "first", | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"window.restoreWindows": "all", | |
"[svg]": {}, | |
"files.autoSave": "afterDelay", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"explorer.confirmDelete": false, | |
"eslint.debug": true, | |
"workbench.colorTheme": "Catppuccin Macchiato", | |
"[xml]": {}, | |
"extensions.ignoreRecommendations": false, | |
"javascript.preferences.quoteStyle": "double", | |
"typescript.preferences.quoteStyle": "single", | |
// "eslint.codeAction.showDocumentation": { | |
// "enable": true | |
// }, | |
"editor.rulers": [], | |
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)", | |
"terminal.integrated.tabs.enabled": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"redhat.telemetry.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false, | |
"yaml": true | |
}, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"editor.formatOnPaste": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.tabSize": 2, | |
"editor.accessibilitySupport": "off", | |
"gitlens.advanced.messages": { | |
"suppressCreatePullRequestPrompt": true, | |
"suppressGitMissingWarning": true | |
}, | |
"liveServer.settings.donotVerifyTags": true, | |
"eslint.format.enable": true, | |
"git.confirmSync": false, | |
"terminal.integrated.scrollback": 20000, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"advancedNewFile.exclude": { | |
"**/node_modules/**/*": true | |
}, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"eslint.runtime": "", | |
"editor.wordWrap": "wordWrapColumn", | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"terminal.integrated.enableMultiLinePasteWarning": false, | |
"[typescript]": { | |
"togglequotes.chars": ["\"", "'", "`"] | |
}, | |
"typescript.enablePromptUseWorkspaceTsdk": true, | |
"cSpell.userWords": ["lucide", "nestjs", "shadcn", "tailwindcss", "trpc"], | |
"cSpell.languageSettings": [], | |
"nxConsole.showNodeVersionOnStartup": false, | |
"http.proxyAuthorization": null, | |
"breadcrumbs.enabled": false, | |
"debug.javascript.codelens.npmScripts": "never", | |
"editor.cursorBlinking": "solid", | |
"editor.parameterHints.enabled": false, | |
"explorer.decorations.badges": false, | |
"explorer.decorations.colors": false, | |
"git.decorations.enabled": false, | |
"scm.diffDecorations": "none", | |
"workbench.sideBar.location": "left", | |
"editor.inlineSuggest.enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment