Created
April 12, 2022 09:44
-
-
Save Karnak19/3cbdb7010ddcb1af02f79dc5a0caef9d to your computer and use it in GitHub Desktop.
vscode settings
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
| { | |
| "[ansible]": { | |
| "gitlens.codeLens.scopes": ["document"] | |
| }, | |
| "[prisma]": { | |
| "editor.defaultFormatter": "Prisma.prisma" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "css.validate": false, | |
| "debug.javascript.autoAttachFilter": "onlyWithFlag", | |
| "deno.enable": true, | |
| "editor.accessibilitySupport": "off", | |
| "editor.autoClosingBrackets": "always", | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": false, | |
| "source.fixAll.eslint": true, // this allows ESLint to auto fix on save | |
| "source.organizeImports": false | |
| }, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, | |
| "editor.formatOnSave": true, | |
| "editor.guides.bracketPairs": true, | |
| "editor.inlineSuggest.enabled": true, | |
| "editor.lineHeight": 24, | |
| "editor.lineNumbers": "relative", | |
| "editor.linkedEditing": true, | |
| "editor.quickSuggestions": { | |
| "strings": true | |
| }, | |
| "editor.tabSize": 2, | |
| "eslint.validate": ["javascript", "typescript", "javascriptreact", "vue"], | |
| "explorer.experimental.fileNesting.enabled": true, | |
| "explorer.experimental.fileNesting.patterns": { | |
| "*.tsx": "$(capture).tsx, $(capture).*.ts, $(capture).*.tsx", | |
| "dockerfile": ".dockerignore, dockerfile*", | |
| "package.json": ".browserslist*, .circleci*, .codecov, .commitlint*, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitpod*, .huskyrc*, .jslint*, .lintstagedrc*, .markdownlint*, .mocha*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .releaserc*, .sentry*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, api-extractor.json, appveyor*, ava.config.*, azure-pipelines*, bower.json, build.config.*, commitlint*, crowdin*, cypress.json, dangerfile*, dprint.json, firebase.json, grunt*, gulp*, jasmine.*, jenkins*, jest.config.*, jsconfig.*, karma*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, nx.*, package-lock.json, playwright.config.*, pm2.*, pnpm*, prettier*, pullapprove*, puppeteer.config.*, renovate*, stylelint*, tsconfig.*, tsdoc.*, tslint*, tsup.config.*, turbo*, typedoc*, vercel*, vetur.config.*, vitest.config.*, webpack.config.*, workspace.json, xo.config.*, yarn*", | |
| "vite.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .htmlnanorc*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, cssnano.config.*, cypress.json, env.d.ts, htmlnanorc.*, index.html, jasmine.*, jest.config.*, jsconfig.*, karma*, playwright.config.*, postcss.config.*, puppeteer.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, unocss.config.*, vitest.config.*, webpack.config.*, windi.config.*" | |
| }, | |
| "files.defaultLanguage": "${activeEditorLanguage}", | |
| "github.copilot.enable": { | |
| "*": true, | |
| "markdown": false, | |
| "plaintext": false, | |
| "typescript": true, | |
| "yaml": false | |
| }, | |
| "i18n-ally.displayLanguage": "en", | |
| "javascript.inlayHints.parameterNames.enabled": "all", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "material-icon-theme.activeIconPack": "react", | |
| "material-icon-theme.files.associations": { | |
| "index.js": "../../../../.vscode/extensions/vscode-icons-team.vscode-icons-11.6.0/icons/file_type_js", | |
| "package-lock.json": "nodejs_alt", | |
| "tsconfig.build.json": "typescript-def", | |
| "tsconfig.json": "typescript-def" | |
| }, | |
| "peacock.favoriteColors": [ | |
| { | |
| "name": "Angular Red", | |
| "value": "#dd0531" | |
| }, | |
| { | |
| "name": "Azure Blue", | |
| "value": "#007fff" | |
| }, | |
| { | |
| "name": "JavaScript Yellow", | |
| "value": "#f9e64f" | |
| }, | |
| { | |
| "name": "Mandalorian Blue", | |
| "value": "#1857a4" | |
| }, | |
| { | |
| "name": "Node Green", | |
| "value": "#215732" | |
| }, | |
| { | |
| "name": "React Blue", | |
| "value": "#61dafb" | |
| }, | |
| { | |
| "name": "Something Different", | |
| "value": "#832561" | |
| }, | |
| { | |
| "name": "Svelte Orange", | |
| "value": "#ff3d00" | |
| }, | |
| { | |
| "name": "Vue Green", | |
| "value": "#42b883" | |
| } | |
| ], | |
| "redhat.telemetry.enabled": false, | |
| "search.exclude": { | |
| "**/.git": true, | |
| "**/.github": true, | |
| "**/.next": true, | |
| "**/.nuxt": true, | |
| "**/.output": true, | |
| "**/.pnpm": true, | |
| "**/.vscode": true, | |
| "**/.yarn": true, | |
| "**/bower_components": true, | |
| "**/dist/**": true, | |
| "**/logs": true, | |
| "**/node_modules": true, | |
| "**/out/**": true, | |
| "**/package-lock.json": true, | |
| "**/pnpm-lock.yaml": true, | |
| "**/tmp": true, | |
| "**/yarn.lock": true | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "settingsSync.ignoredExtensions": [ | |
| "ms-vscode-remote.remote-wsl", | |
| "atlassian.atlascode" | |
| ], | |
| "settingsSync.ignoredSettings": ["terminal.integrated.fontFamily"], | |
| "svelte.enable-ts-plugin": true, | |
| "tailwindCSS.emmetCompletions": true, | |
| "tailwindCSS.includeLanguages": { | |
| "plaintext": "javascript" | |
| }, | |
| "terminal.integrated.defaultLocation": "editor", | |
| "terminal.integrated.env.osx": { | |
| "FIG_NEW_SESSION": "1" | |
| }, | |
| "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
| "typescript.inlayHints.parameterNames.enabled": "all", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.validate.enable": true, | |
| "vim.hlsearch": true, | |
| "vim.insertModeKeyBindings": [ | |
| { | |
| "after": ["<Esc>"], | |
| "before": ["j", "k"] | |
| } | |
| ], | |
| "window.nativeTabs": true, | |
| "window.title": "${dirty}${activeEditorShort} | ${rootName}", | |
| "workbench.colorTheme": "One Dark Pro", | |
| "workbench.editor.wrapTabs": true, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.panel.defaultLocation": "left", | |
| "workbench.sideBar.location": "right", | |
| "yaml.schemas": { | |
| "file:///Users/basile/.vscode/extensions/atlassian.atlascode-2.10.11/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment