Last active
December 15, 2024 18:06
-
-
Save guizordan/ff9aa01585d530a371a6174d01350320 to your computer and use it in GitHub Desktop.
ultimate vs code javascript configuration
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
| { | |
| "editor.formatOnSave": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit", | |
| "source.fixAll.stylelint": "explicit" | |
| }, | |
| "terminal.integrated.fontFamily": "Hack Nerd Font Mono", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.suggest.showReferences": false, | |
| "editor.suggest.showTypeParameters": true, | |
| "editor.snippetSuggestions": "top", | |
| "editor.wordWrap": "on", | |
| "emmet.triggerExpansionOnTab": true, | |
| "editor.lineHeight": 24, | |
| "editor.fontWeight": "400", | |
| "editor.cursorWidth": 2, | |
| "editor.showUnused": true, | |
| "terminal.integrated.fontWeight": "600", | |
| "files.trimTrailingWhitespace": true, | |
| "files.trimFinalNewlines": true, | |
| "terminal.integrated.fontWeightBold": "700", | |
| "terminal.integrated.lineHeight": 1.6, | |
| "terminal.explorerKind": "external", | |
| "emmet.showSuggestionsAsSnippets": true, | |
| "git.fetchOnPull": true, | |
| "grunt.autoDetect": "off", | |
| "gulp.autoDetect": "off", | |
| "jake.autoDetect": "off", | |
| "git.autofetch": true, | |
| "git.autoStash": true, | |
| "editor.fontSize": 14, | |
| "editor.fontLigatures": true, | |
| "editor.renderLineHighlight": "gutter", | |
| "terminal.integrated.fontSize": 14, | |
| "extensions.ignoreRecommendations": true, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx", | |
| "nunjucks": "html" | |
| }, | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.codeLens.enabled": false, | |
| "breadcrumbs.enabled": true, | |
| "git.enableSmartCommit": true, | |
| "editor.parameterHints.enabled": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "workbench.editor.showTabs": "multiple", | |
| "editor.minimap.enabled": false, | |
| "editor.renderWhitespace": "all", | |
| "search.exclude": { | |
| "**/docs": true, | |
| "**/ios": true, | |
| "**/android": true, | |
| "**/.git": true, | |
| "**/node_modules": true, | |
| "**/flow-typed/": true, | |
| "**/bower_components": true, | |
| "**/tmp": true, | |
| "**/package-lock.json": true | |
| }, | |
| "files.exclude": { | |
| "**/.classpath": true, | |
| "**/.project": true, | |
| "**/.settings": true, | |
| "**/.factorypath": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/*/**": true | |
| }, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "git.openRepositoryInParentFolders": "always", | |
| "typescript.format.semicolons": "insert", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "window.zoomLevel": 1, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "editor.suggest.showColors": false, | |
| "editor.suggest.showConstructors": false, | |
| "editor.suggest.showDeprecated": false, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "editor.gotoLocation.multipleImplementations": "goto", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "workbench.colorTheme": "Dracula Theme", | |
| "editor.tabSize": 2, | |
| "editor.autoIndent": "brackets", | |
| "editor.stickyScroll.enabled": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "emmet.excludeLanguages": ["markdown", "javascript"], | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "nunjucks": "html" | |
| }, | |
| "redhat.telemetry.enabled": false, | |
| "eslint.format.enable": true, | |
| "terminal.integrated.inheritEnv": true, | |
| "terminal.integrated.defaultProfile.linux": "zsh" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment