Last active
July 11, 2024 14:24
-
-
Save mevius6/1850aac9f1337f62fe314628014e726e to your computer and use it in GitHub Desktop.
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
| { | |
| /* ------------------------------------------------------------------------ | |
| [Navigation by Tokens] | |
| ├── window | |
| ├── workbench | |
| ├── explorer | |
| ├── [editor] | |
| │ ├── minimap | |
| │ └── suggest | |
| ├── files | |
| ├── [...] | |
| │ ├── prettier | |
| │ ├── eslint | |
| │ ├── emmet | |
| │ ├── html, jade | |
| │ ├── css, less, scss | |
| │ └── javascript, typescript | |
| ├── [scm] | |
| │ ├── git | |
| │ └── gitlens | |
| ├── [debug] | |
| │ └── console | |
| ├── terminal | |
| ├── npm | |
| ├── markdown | |
| └── [ext] | |
| Usage: | |
| The selected setting identifier is highlighted in the document | |
| and on the mini-map. | |
| Required settings: { | |
| "editor.occurrencesHighlight": true, | |
| "editor.selectionHighlight": true, […] } | |
| Refs: | |
| go -> https://code.visualstudio.com/docs/getstarted/settings#_settings-editor-filters | |
| go -> https://code.visualstudio.com/docs/getstarted/settings#_default-settings | |
| UPD: Mark up mini-map w/ section headers | |
| --------------------------------------------------------------------------- */ | |
| //MARK: Window | |
| // Window Parameters | |
| "window.autoDetectColorScheme": true, | |
| "window.autoDetectHighContrast": true, | |
| "window.closeWhenEmpty": true, | |
| "window.newWindowDimensions": "default", | |
| "window.titleBarStyle": "custom", | |
| // "window.title": "${rootName}${separator}${activeFolderShort}${separator}${activeEditorShort}", | |
| // and vice versa | |
| "window.title": "${activeEditorShort}${separator}${activeFolderMedium}${separator}${rootName}", | |
| "window.titleSeparator": "\u2003\u27E8\u27E8\u2003", | |
| // Chars: ( • ), ( · ), ( » ), ( → ), ( ➔ ), ( ☞ ), ( ❧ ), ( ✲ ), ( ✻ ), ( ✥ ), etc. | |
| //MARK: Workbench Setup | |
| "workbench.settings.openDefaultKeybindings": false, | |
| "workbench.settings.openDefaultSettings": false, | |
| "workbench.fontAliasing": "auto", | |
| //MARK: Color Theming | |
| "workbench.colorCustomizations": { | |
| // "foreground": "#", | |
| // "editorCursor.foreground": "#f2f2f2", | |
| // "editorBracketHighlight.foreground1": "#", | |
| // "editorBracketHighlight.foreground2": "#", | |
| // "editorBracketHighlight.foreground3": "#", | |
| // "editorBracketHighlight.foreground4": "#", | |
| // "editorBracketHighlight.foreground5": "#", | |
| // "editorBracketHighlight.foreground6": "#", | |
| "bookmarks.lineBackground": "#2F2F30", | |
| "bookmarks.lineBorder": "#DCD8D080", | |
| "bookmarks.overviewRuler": "#DBDDBD" // BFC9D0 | |
| }, | |
| "workbench.colorTheme": "GitHub Dark Dimmed", | |
| "workbench.preferredLightColorTheme": "GitHub Light Default", | |
| "workbench.preferredDarkColorTheme": "GitHub Dark Default", | |
| "workbench.preferredHighContrastColorTheme": "GitHub Dark High Contrast", | |
| "workbench.preferredHighContrastLightColorTheme": "GitHub Light High Contrast", | |
| //MARK: Icon Themes | |
| "workbench.productIconTheme": "icons-carbon", | |
| "workbench.iconTheme": "vs-minimal", | |
| //MARK: UI Lists & Trees | |
| /* -------- UI Options to configure the display of lists and trees -------- *\ | |
| \* -------- Параметры для настройки отображения списков и деревьев -------- */ | |
| "workbench.list.smoothScrolling": true, | |
| "workbench.tree.indent": 16, // 4, 8, 16, 24 | |
| "workbench.tree.renderIndentGuides": "onHover", | |
| //MARK: Tabs | |
| // Setup the display of editor tabs | |
| "workbench.editor.highlightModifiedTabs": true, | |
| "workbench.editor.wrapTabs": true, | |
| "workbench.editor.pinnedTabSizing": "compact", | |
| "workbench.editor.centeredLayoutAutoResize": true, | |
| // https://code.visualstudio.com/updates/v1_91#_access-file-extensions-in-custom-labels | |
| "workbench.editor.customLabels.enabled": true, | |
| //MARK: Layout | |
| // Layout customization | |
| "workbench.sideBar.location": "right", | |
| // Zen Mode | |
| "zenMode.fullScreen": false, | |
| "zenMode.centerLayout": true, | |
| //MARK: Explorer | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.compactFolders": true, | |
| "explorer.sortOrder": "type", | |
| "explorer.fileNesting.enabled": true, | |
| "explorer.openEditors.visible": 1, | |
| //MARK: Editor Settings | |
| "editor.semanticHighlighting.enabled": "configuredByTheme", | |
| "editor.semanticTokenColorCustomizations": { | |
| "[Dracula]": { | |
| "enabled": false | |
| }, | |
| "[GitHub Dark Default]": { | |
| "enabled": true | |
| }, | |
| "[GitHub Dark Dimmed]": { | |
| "enabled": true | |
| } | |
| }, | |
| "interactiveWindow.collapseCellInputCode": "fromEditor", | |
| //MARK: Typography | |
| // Monospace font stack: | |
| // "ui-monospace, 'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace" | |
| "editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, monospace", | |
| "editor.foldingHighlight": false, | |
| "editor.foldingStrategy": "indentation", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, // 13, 12 | |
| "editor.fontWeight": "400", | |
| "editor.lineHeight": 0, // Line heights: 0 (auto), 1, 1.25, 1.45, 1.5 (= 0) | |
| "editor.tabSize": 2, | |
| "editor.lineNumbers": "on", | |
| "editor.matchBrackets": "near", | |
| "editor.overviewRulerBorder": false, | |
| "editor.guides.indentation": false, | |
| "editor.renderLineHighlight": "none", | |
| "editor.renderWhitespace": "boundary", | |
| "editor.rulers": [], // [80] | |
| "editor.scrollBeyondLastColumn": 0, | |
| "editor.smoothScrolling": true, | |
| "editor.wordWrap": "bounded", | |
| "editor.wordWrapColumn": 80, | |
| "editor.unicodeHighlight.nonBasicASCII": false, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "name": "Comment", | |
| "scope": [ | |
| // "comment", | |
| // "comment.block", | |
| // "comment.block.documentation", | |
| "comment.line", | |
| "comment.line.double-slash", | |
| // "punctuation.definition.comment", | |
| // https://github.com/microsoft/vscode-textmate/blob/main/test-cases/themes/syntaxes/Jade.json | |
| "comment.unbuffered.block.jade", | |
| "string.comment.buffered.block.jade" | |
| ], | |
| "settings": { | |
| // "fontStyle": "", | |
| "fontStyle": "italic" // (italic || bold || underline) | |
| } | |
| } | |
| ] | |
| }, | |
| //MARK: Cursor Styling | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.cursorStyle": "line", | |
| "editor.cursorWidth": 2, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.linkedEditing": true, | |
| //MARK: Minimap | |
| // Minimap Options | |
| "editor.minimap.maxColumn": 120, | |
| "editor.minimap.renderCharacters": false, | |
| "editor.minimap.showSlider": "mouseover", | |
| "editor.minimap.size": "proportional", | |
| //MARK: Suggestions | |
| // Suggestions Display Settings | |
| "editor.suggest.insertMode": "replace", | |
| "editor.suggestFontSize": 13, | |
| "editor.suggestSelection": "first", | |
| "editor.snippetSuggestions": "top", | |
| "diffEditor.renderSideBySide": false, | |
| //MARK: Code | |
| // Code Review and Formatting | |
| "files.associations": { | |
| "*.tpl": "php", | |
| "*.master": "html" | |
| }, | |
| "files.defaultLanguage": "jade", | |
| "files.insertFinalNewline": true, | |
| "files.trimFinalNewlines": true, | |
| "files.trimTrailingWhitespace": true, | |
| // Code Formatters and Linters Settings | |
| "prettier.printWidth": 80, | |
| "prettier.tabWidth": 2, | |
| "prettier.semi": true, | |
| "prettier.singleQuote": true, | |
| "prettier.jsxSingleQuote": true, | |
| "prettier.trailingComma": "es5", | |
| "prettier.bracketSpacing": true, | |
| "prettier.arrowParens": "always", | |
| "emmet.showSuggestionsAsSnippets": true, | |
| "emmet.syntaxProfiles": { "smarty": "html" }, | |
| "emmet.extensionsPath": [ "./emmet" ], | |
| // HTML | |
| "html.autoClosingTags": true, | |
| "html.autoCreateQuotes": true, | |
| "html.completion.attributeDefaultValue": "doublequotes", | |
| // "html.format.wrapLineLength": 120, | |
| "html.format.wrapAttributes": "preserve-aligned", | |
| "[html]": { | |
| "editor.suggest.insertMode": "replace", | |
| "gitlens.codeLens.scopes": [ | |
| "document" | |
| ], | |
| "editor.autoClosingOvertype": "always", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true | |
| }, | |
| // JS | |
| "javascript.suggest.autoImports": true, | |
| "typescript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| // "javascript.validate.enable": false, | |
| // "typescript.validate.enable": false, | |
| // CSS/SCSS/Less | |
| "css.validate": false, | |
| "less.validate": false, | |
| "scss.validate": false, | |
| "scss.completion.completePropertyWithSemicolon": true, | |
| "stylelint.enable": true, | |
| // "editor.defaultFormatter": "dbaeumer.vscode-eslint", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit", | |
| "source.fixAll.stylelint": "explicit" | |
| }, | |
| //MARK: SCM | |
| "scm.defaultViewMode": "tree", | |
| "scm.inputFontFamily": "editor", | |
| "scm.providerCountBadge": "auto", | |
| //MARK: Git | |
| "git.autofetch": true, | |
| "git.enableSmartCommit": true, | |
| "git.confirmSync": false, | |
| "gitlens.currentLine.enabled": false, | |
| "gitlens.currentLine.scrollable": false, | |
| "gitlens.hovers.enabled": true, | |
| "gitlens.mode.statusBar.enabled": true, | |
| // "gitlab.instanceUrl": "https://gitlab.com", | |
| //MARK: Console | |
| // Debug Console | |
| "debug.console.fontFamily": "'JetBrains Mono', Menlo, Monaco, monospace", | |
| "debug.console.fontSize": 13, | |
| "debug.console.lineHeight": 0, | |
| "debug.javascript.debugByLinkOptions": "on", | |
| "debug.javascript.autoAttachFilter": "disabled", | |
| //MARK: Terminal | |
| // Integrated Terminal | |
| "terminal.integrated.cursorBlinking": true, | |
| "terminal.integrated.cursorStyle": "line", | |
| "terminal.integrated.cursorWidth": 2, | |
| "terminal.integrated.fontFamily": "'JetBrains Mono', Menlo, Monaco, monospace", | |
| "terminal.integrated.fontSize": 13, | |
| "terminal.integrated.fontWeight": "400", | |
| "terminal.integrated.fontWeightBold": "600", | |
| "terminal.integrated.lineHeight": 1.2, | |
| "terminal.integrated.minimumContrastRatio": 1, // 7 | |
| // Privacy Settings | |
| "telemetry.telemetryLevel": "crash", | |
| //MARK: NPM | |
| "npm.autoDetect": "on", | |
| "npm.enableRunFromFolder": true, | |
| "npm.scriptExplorerAction": "run", | |
| //MARK: Languages | |
| // Language-specific Preferences | |
| /* -------------------------------- Jupyter ------------------------------- */ | |
| "workbench.editorAssociations": { | |
| "*.ipynb": "jupyter-notebook" | |
| }, | |
| "notebook.cellToolbarLocation": { | |
| "default": "right", | |
| "jupyter-notebook": "left" | |
| }, | |
| /* ------------------------------- Markdown ------------------------------- */ | |
| "[markdown]": { | |
| "editor.unicodeHighlight.ambiguousCharacters": false, | |
| "editor.unicodeHighlight.invisibleCharacters": false, | |
| "editor.wordWrap": "on", | |
| "editor.experimental.pasteActions.enabled": true, | |
| // "editor.renderWhitespace": "all", | |
| "files.trimTrailingWhitespace": true | |
| }, | |
| "markdown.preview.scrollEditorWithPreview": false, | |
| "markdown.preview.scrollPreviewWithEditor": true, | |
| "markdown.experimental.editor.pasteLinks.enabled": true, | |
| "markdown.extension.italic.indicator": "_", | |
| "markdown.extension.list.indentationSize": "adaptive", | |
| "markdown.extension.math.enabled": true, | |
| "markdown.extension.tableFormatter.enabled": true, | |
| // "markdown.extension.toc.orderedList": true, | |
| "markdown.extension.toc.levels": "1..4", | |
| "markdown.extension.toc.unorderedList.marker": "-", | |
| "markdown.extension.toc.updateOnSave": true, | |
| "markdown.extension.toc.slugifyMode": "github", | |
| /* HTML generation parameters | |
| "markdown.extension.print.includeVscodeStylesheets": true, | |
| "markdown.extension.print.onFileSave": true, | |
| "markdown.extension.print.theme": "dark", */ | |
| "markdown-preview-github-styles.colorTheme": "auto", | |
| // "markdown-checkboxes.enable": true, | |
| //MARK: Extensions | |
| "settingsSync.ignoredSettings": [], | |
| "extensions.ignoreRecommendations": true, | |
| "projectManager.git.baseFolders": [ | |
| "/Users/nicolai/Documents", | |
| "/Users/nicolai/Downloads/Code/→ Projects" | |
| ], | |
| "projectManager.openInNewWindowWhenClickingInStatusBar": true, | |
| // "bookmarks.sideBar.expanded": true, | |
| "bookmarks.experimental.enableNewStickyEngine": true, | |
| // https://github.com/Gruntfuggly/todo-tree/wiki/Configuration-Examples | |
| "todo-tree.highlights.useColourScheme": true, | |
| "comment-divider.length": 80, // 78 | |
| "comment-divider.shouldLengthIncludeIndent": true, | |
| "comment-divider.languagesMap": { | |
| "toml": ["#", "#"], | |
| "scss": ["//"] | |
| }, | |
| // "bookmarks.navigateThroughAllFiles": false, | |
| "bookmarks.wrapNavigation": true, | |
| "bookmarks.saveBookmarksInProject": true, | |
| "bookmarks.gutterIconFillColor": "#0000000", | |
| "bookmarks.gutterIconBorderColor": "#DBDDBD", | |
| // "bookmarks.sideBar.expanded": true, | |
| // "bookmarks.sideBar.countBadge": "files", | |
| "gitlens.views.repositories.branches.layout": "list", | |
| "gitlens.autolinks": [ | |
| { | |
| "ignoreCase": false, | |
| "prefix": "TICKET-", | |
| "url": "" | |
| } | |
| ], | |
| "gitlens.gitCommands.skipConfirmations": [ | |
| "fetch:command", | |
| "stash-push:command", | |
| "switch:command", | |
| "push:command" | |
| ], | |
| "explorer.fileNesting.patterns": { | |
| "//": "Last update at 20.06.2024, 15:25:50", | |
| ".clang-tidy": ".clang-format, .clangd, compile_commands.json", | |
| ".env": "*.env, .env.*, .envrc, env.d.ts", | |
| ".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*", | |
| ".project": ".classpath", | |
| "+layout.svelte": "+layout.ts,+layout.ts,+layout.js,+layout.server.ts,+layout.server.js,+layout.gql", | |
| "+page.svelte": "+page.server.ts,+page.server.js,+page.ts,+page.js,+page.gql", | |
| "app.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "artisan": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, server.php, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, webpack.mix.js, windi.config.*", | |
| "astro.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "BUILD.bazel": "*.bzl, *.bazel, *.bazelrc, bazel.rc, .bazelignore, .bazelproject, WORKSPACE", | |
| "Cargo.toml": ".clippy.toml, .rustfmt.toml, cargo.lock, clippy.toml, cross.toml, rust-toolchain.toml, rustfmt.toml", | |
| "CMakeLists.txt": "*.cmake, *.cmake.in, .cmake-format.yaml, CMakePresets.json, CMakeCache.txt", | |
| "composer.json": ".php*.cache, composer.lock, phpunit.xml*, psalm*.xml", | |
| "default.nix": "shell.nix", | |
| "deno.json*": "*.env, .env.*, .envrc, api-extractor.json, deno.lock, env.d.ts, import-map.json, import_map.json, jsconfig.*, tsconfig.*, tsdoc.*", | |
| "Dockerfile": "*.dockerfile, .devcontainer.*, .dockerignore, captain-definition, compose.*, docker-compose.*, dockerfile*", | |
| "flake.nix": "flake.lock", | |
| "gatsby-config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, gatsby-browser.*, gatsby-node.*, gatsby-ssr.*, gatsby-transformer.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "gemfile": ".ruby-version, gemfile.lock", | |
| "go.mod": ".air*, go.sum", | |
| "go.work": "go.work.sum", | |
| "hatch.toml": ".editorconfig, .flake8, .isort.cfg, .python-version, hatch.toml, requirements*.in, requirements*.pip, requirements*.txt, tox.ini", | |
| "I*.cs": "$(capture).cs", | |
| "Makefile": "*.mk", | |
| "mix.exs": ".credo.exs, .dialyzer_ignore.exs, .formatter.exs, .iex.exs, .tool-versions, mix.lock", | |
| "next.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, next-env.d.ts, next-i18next.config.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "nuxt.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .nuxtignore, .nuxtrc, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "package.json": ".browserslist*, .circleci*, .commitlint*, .cz-config.js, .czrc, .dlint.json, .dprint.json*, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitmojirc.json, .gitpod*, .huskyrc*, .jslint*, .knip.*, .lintstagedrc*, .markdownlint*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .pylintrc, .release-please*.json, .releaserc*, .ruff.toml, .sentry*, .simple-git-hooks*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .versionrc*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, Procfile, apollo.config.*, appveyor*, azure-pipelines*, biome.json*, bower.json, build.config.*, bun.lockb, commitlint*, crowdin*, dangerfile*, dlint.json, dprint.json*, electron-builder.*, eslint*, firebase.json, grunt*, gulp*, jenkins*, knip.*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, npm-shrinkwrap.json, nx.*, package-lock.json, package.nls*.json, phpcs.xml, pm2.*, pnpm*, prettier*, pullapprove*, pyrightconfig.json, release-please*.json, release-tasks.sh, release.config.*, renovate*, rollup.config.*, rspack*, ruff.toml, simple-git-hooks*, sonar-project.properties, stylelint*, tslint*, tsup.config.*, turbo*, typedoc*, unlighthouse*, vercel*, vetur.config.*, webpack*, workspace.json, wrangler.toml, xo.config.*, yarn*", | |
| "Pipfile": ".editorconfig, .flake8, .isort.cfg, .python-version, Pipfile, Pipfile.lock, requirements*.in, requirements*.pip, requirements*.txt, tox.ini", | |
| "pubspec.yaml": ".metadata, .packages, all_lint_rules.yaml, analysis_options.yaml, build.yaml, pubspec.lock, pubspec_overrides.yaml", | |
| "pyproject.toml": ".commitlint*, .dlint.json, .dprint.json*, .editorconfig, .eslint*, .flake8, .flowconfig, .isort.cfg, .jslint*, .lintstagedrc*, .markdownlint*, .pdm-python, .pdm.toml, .prettier*, .pylintrc, .python-version, .ruff.toml, .stylelint*, .textlint*, .xo-config*, .yamllint*, MANIFEST.in, Pipfile, Pipfile.lock, biome.json*, commitlint*, dangerfile*, dlint.json, dprint.json*, eslint*, hatch.toml, lint-staged*, pdm.lock, phpcs.xml, poetry.lock, poetry.toml, prettier*, pyproject.toml, pyrightconfig.json, requirements*.in, requirements*.pip, requirements*.txt, ruff.toml, setup.cfg, setup.py, stylelint*, tox.ini, tslint*, xo.config.*", | |
| "quasar.conf.js": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, quasar.extensions.json, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "readme*": "AUTHORS, Authors, BACKERS*, Backers*, CHANGELOG*, CITATION*, CODEOWNERS, CODE_OF_CONDUCT*, CONTRIBUTING*, CONTRIBUTORS, COPYING*, CREDITS, Changelog*, Citation*, Code_Of_Conduct*, Codeowners, Contributing*, Contributors, Copying*, Credits, GOVERNANCE.MD, Governance.md, HISTORY.MD, History.md, LICENSE*, License*, MAINTAINERS, Maintainers, RELEASE_NOTES*, Release_Notes*, SECURITY.MD, SPONSORS*, Security.md, Sponsors*, authors, backers*, changelog*, citation*, code_of_conduct*, codeowners, contributing*, contributors, copying*, credits, governance.md, history.md, license*, maintainers, release_notes*, security.md, sponsors*", | |
| "Readme*": "AUTHORS, Authors, BACKERS*, Backers*, CHANGELOG*, CITATION*, CODEOWNERS, CODE_OF_CONDUCT*, CONTRIBUTING*, CONTRIBUTORS, COPYING*, CREDITS, Changelog*, Citation*, Code_Of_Conduct*, Codeowners, Contributing*, Contributors, Copying*, Credits, GOVERNANCE.MD, Governance.md, HISTORY.MD, History.md, LICENSE*, License*, MAINTAINERS, Maintainers, RELEASE_NOTES*, Release_Notes*, SECURITY.MD, SPONSORS*, Security.md, Sponsors*, authors, backers*, changelog*, citation*, code_of_conduct*, codeowners, contributing*, contributors, copying*, credits, governance.md, history.md, license*, maintainers, release_notes*, security.md, sponsors*", | |
| "README*": "AUTHORS, Authors, BACKERS*, Backers*, CHANGELOG*, CITATION*, CODEOWNERS, CODE_OF_CONDUCT*, CONTRIBUTING*, CONTRIBUTORS, COPYING*, CREDITS, Changelog*, Citation*, Code_Of_Conduct*, Codeowners, Contributing*, Contributors, Copying*, Credits, GOVERNANCE.MD, Governance.md, HISTORY.MD, History.md, LICENSE*, License*, MAINTAINERS, Maintainers, RELEASE_NOTES*, Release_Notes*, SECURITY.MD, SPONSORS*, Security.md, Sponsors*, authors, backers*, changelog*, citation*, code_of_conduct*, codeowners, contributing*, contributors, copying*, credits, governance.md, history.md, license*, maintainers, release_notes*, security.md, sponsors*", | |
| "remix.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, remix.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "requirements.txt": ".editorconfig, .flake8, .isort.cfg, .python-version, requirements*.in, requirements*.pip, requirements*.txt, tox.ini", | |
| "rush.json": ".browserslist*, .circleci*, .commitlint*, .cz-config.js, .czrc, .dlint.json, .dprint.json*, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitmojirc.json, .gitpod*, .huskyrc*, .jslint*, .knip.*, .lintstagedrc*, .markdownlint*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .pylintrc, .release-please*.json, .releaserc*, .ruff.toml, .sentry*, .simple-git-hooks*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .versionrc*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, Procfile, apollo.config.*, appveyor*, azure-pipelines*, biome.json*, bower.json, build.config.*, bun.lockb, commitlint*, crowdin*, dangerfile*, dlint.json, dprint.json*, electron-builder.*, eslint*, firebase.json, grunt*, gulp*, jenkins*, knip.*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, npm-shrinkwrap.json, nx.*, package-lock.json, package.nls*.json, phpcs.xml, pm2.*, pnpm*, prettier*, pullapprove*, pyrightconfig.json, release-please*.json, release-tasks.sh, release.config.*, renovate*, rollup.config.*, rspack*, ruff.toml, simple-git-hooks*, sonar-project.properties, stylelint*, tslint*, tsup.config.*, turbo*, typedoc*, unlighthouse*, vercel*, vetur.config.*, webpack*, workspace.json, wrangler.toml, xo.config.*, yarn*", | |
| "setup.cfg": ".editorconfig, .flake8, .isort.cfg, .python-version, MANIFEST.in, requirements*.in, requirements*.pip, requirements*.txt, setup.cfg, tox.ini", | |
| "setup.py": ".editorconfig, .flake8, .isort.cfg, .python-version, MANIFEST.in, requirements*.in, requirements*.pip, requirements*.txt, setup.cfg, setup.py, tox.ini", | |
| "shims.d.ts": "*.d.ts", | |
| "svelte.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, houdini.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, mdsvex.config.js, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vite.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "vite.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "vue.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, capacitor.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, ionic.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, sst.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*", | |
| "*.asax": "$(capture).*.cs, $(capture).*.vb", | |
| "*.ascx": "$(capture).*.cs, $(capture).*.vb", | |
| "*.ashx": "$(capture).*.cs, $(capture).*.vb", | |
| "*.aspx": "$(capture).*.cs, $(capture).*.vb", | |
| "*.axaml": "$(capture).axaml.cs", | |
| "*.bloc.dart": "$(capture).event.dart, $(capture).state.dart", | |
| "*.c": "$(capture).h", | |
| "*.cc": "$(capture).hpp, $(capture).h, $(capture).hxx, $(capture).hh", | |
| "*.cjs": "$(capture).cjs.map, $(capture).*.cjs, $(capture)_*.cjs", | |
| "*.component.ts": "$(capture).component.html, $(capture).component.spec.ts, $(capture).component.css, $(capture).component.scss, $(capture).component.sass, $(capture).component.less", | |
| "*.cpp": "$(capture).hpp, $(capture).h, $(capture).hxx, $(capture).hh", | |
| "*.cs": "$(capture).*.cs", | |
| "*.cshtml": "$(capture).cshtml.cs", | |
| "*.csproj": "*.config, *proj.user, appsettings.*, bundleconfig.json", | |
| "*.css": "$(capture).css.map, $(capture).*.css", | |
| "*.cxx": "$(capture).hpp, $(capture).h, $(capture).hxx, $(capture).hh", | |
| "*.dart": "$(capture).freezed.dart, $(capture).g.dart", | |
| "*.db": "*.db-shm, *.db-wal", | |
| "*.ex": "$(capture).html.eex, $(capture).html.heex, $(capture).html.leex", | |
| "*.fs": "$(capture).fs.js, $(capture).fs.js.map, $(capture).fs.jsx, $(capture).fs.ts, $(capture).fs.tsx, $(capture).fs.rs, $(capture).fs.php, $(capture).fs.dart", | |
| "*.go": "$(capture)_test.go", | |
| "*.java": "$(capture).class", | |
| "*.js": "$(capture).js.map, $(capture).*.js, $(capture)_*.js", | |
| "*.jsx": "$(capture).js, $(capture).*.jsx, $(capture)_*.js, $(capture)_*.jsx, $(capture).less, $(capture).module.less", | |
| "*.master": "$(capture).*.cs, $(capture).*.vb", | |
| "*.md": "$(capture).*", | |
| "*.mjs": "$(capture).mjs.map, $(capture).*.mjs, $(capture)_*.mjs", | |
| "*.module.ts": "$(capture).resolver.ts, $(capture).controller.ts, $(capture).service.ts", | |
| "*.mts": "$(capture).mts.map, $(capture).*.mts, $(capture)_*.mts", | |
| "*.pubxml": "$(capture).pubxml.user", | |
| "*.py": "$(capture).pyi", | |
| "*.razor": "$(capture).razor.cs, $(capture).razor.css, $(capture).razor.scss", | |
| "*.resx": "$(capture).*.resx, $(capture).designer.cs, $(capture).designer.vb", | |
| "*.tex": "$(capture).acn, $(capture).acr, $(capture).alg, $(capture).aux, $(capture).bbl, $(capture).blg, $(capture).fdb_latexmk, $(capture).fls, $(capture).glg, $(capture).glo, $(capture).gls, $(capture).idx, $(capture).ind, $(capture).ist, $(capture).lof, $(capture).log, $(capture).lot, $(capture).out, $(capture).pdf, $(capture).synctex.gz, $(capture).toc, $(capture).xdv", | |
| "*.ts": "$(capture).js, $(capture).d.ts.map, $(capture).*.ts, $(capture)_*.js, $(capture)_*.ts", | |
| "*.tsx": "$(capture).ts, $(capture).*.tsx, $(capture)_*.ts, $(capture)_*.tsx, $(capture).less, $(capture).module.less, $(capture).scss, $(capture).module.scss", | |
| "*.vbproj": "*.config, *proj.user, appsettings.*, bundleconfig.json", | |
| "*.vue": "$(capture).*.ts, $(capture).*.js, $(capture).story.vue", | |
| "*.xaml": "$(capture).xaml.cs" | |
| }, | |
| "explorer.fileNesting.expand": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment