|
| 1 | +{ |
| 2 | + // visuals |
| 3 | + "window.autoDetectColorScheme": true, |
| 4 | + "editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss06', 'zero'", |
| 5 | + "editor.cursorBlinking": "phase", |
| 6 | + "editor.suggestSelection": "first", |
| 7 | + "editor.wordWrap": "on", |
| 8 | + "editor.bracketPairColorization.enabled": true, |
| 9 | + "editor.tabSize": 2, |
| 10 | + "search.exclude": { |
| 11 | + "**/.git": true, |
| 12 | + "**/.nuxt": true, |
| 13 | + "**/.pnpm": true, |
| 14 | + "**/.yarn": true, |
| 15 | + "**/.turbo": true, |
| 16 | + "**/dist/**": true, |
| 17 | + "**/out/**": true, |
| 18 | + "**/logs": true, |
| 19 | + "**/node_modules": true, |
| 20 | + "**/package-lock.json": true, |
| 21 | + "**/pnpm-lock.yaml": true, |
| 22 | + "**/yarn.lock": true |
| 23 | + }, |
| 24 | + // general |
| 25 | + "editor.unicodeHighlight.invisibleCharacters": false, |
| 26 | + "workbench.startupEditor": "none", |
| 27 | + // git |
| 28 | + "git.autofetch": true, |
| 29 | + "git.untrackedChanges": "separate", |
| 30 | + // github |
| 31 | + "githubPullRequests.pullBranch": "never", |
| 32 | + // eslint |
| 33 | + "editor.codeActionsOnSave": { |
| 34 | + "source.fixAll.eslint": "explicit" |
| 35 | + }, |
| 36 | + "eslint.validate": [ |
| 37 | + "javascript", |
| 38 | + "javascriptreact", |
| 39 | + "typescript", |
| 40 | + "typescriptreact", |
| 41 | + "vue", |
| 42 | + "html", |
| 43 | + "markdown", |
| 44 | + "json", |
| 45 | + "jsonc", |
| 46 | + "yaml", |
| 47 | + "github-actions-workflow", |
| 48 | + "toml", |
| 49 | + "xml", |
| 50 | + "gql", |
| 51 | + "graphql", |
| 52 | + "astro", |
| 53 | + "svelte", |
| 54 | + "css", |
| 55 | + "less", |
| 56 | + "scss", |
| 57 | + "pcss", |
| 58 | + "postcss" |
| 59 | + ], |
| 60 | + // stylelint |
| 61 | + "css.validate": true, |
| 62 | + "less.validate": true, |
| 63 | + "scss.validate": true, |
| 64 | + "files.associations": { |
| 65 | + "*.css": "css" |
| 66 | + }, |
| 67 | + // languages |
| 68 | + "[javascript]": { |
| 69 | + "editor.defaultFormatter": "dbaeumer.vscode-eslint" |
| 70 | + }, |
| 71 | + "javascript.preferences.quoteStyle": "single", |
| 72 | + "javascript.preferences.importModuleSpecifierEnding": "js", |
| 73 | + "javascript.suggest.completeJSDocs": true, |
| 74 | + "javascript.suggest.jsdoc.generateReturns": true, |
| 75 | + "[typescript]": { |
| 76 | + "editor.defaultFormatter": "dbaeumer.vscode-eslint" |
| 77 | + }, |
| 78 | + "typescript.preferences.quoteStyle": "single", |
| 79 | + "typescript.preferences.importModuleSpecifierEnding": "js", |
| 80 | + "typescript.suggest.completeJSDocs": true, |
| 81 | + "typescript.suggest.jsdoc.generateReturns": true, |
| 82 | + "[vue]": { |
| 83 | + "editor.defaultFormatter": "dbaeumer.vscode-eslint" |
| 84 | + }, |
| 85 | + "[css]": { |
| 86 | + "editor.defaultFormatter": "stylelint.vscode-stylelint" |
| 87 | + }, |
| 88 | + "[html]": { |
| 89 | + "editor.defaultFormatter": "dbaeumer.vscode-eslint" |
| 90 | + }, |
| 91 | + "[markdown]": { |
| 92 | + "editor.quickSuggestions": { |
| 93 | + "other": true, |
| 94 | + "comments": true, |
| 95 | + "strings": true |
| 96 | + }, |
| 97 | + "editor.formatOnSave": true, |
| 98 | + "editor.formatOnPaste": true, |
| 99 | + "editor.defaultFormatter": "yzhang.markdown-all-in-one" |
| 100 | + }, |
| 101 | + // conventional commits |
| 102 | + "conventionalCommits.showNewVersionNotes": false, |
| 103 | + // kubernetes |
| 104 | + "vs-kubernetes": { |
| 105 | + "vs-kubernetes.crd-code-completion": "enabled" |
| 106 | + }, |
| 107 | + "vscode-kubernetes.log-viewer.follow": true, |
| 108 | + "vscode-kubernetes.log-viewer.timestamp": false, |
| 109 | + "vscode-kubernetes.log-viewer.since": -1, |
| 110 | + "vscode-kubernetes.log-viewer.tail": -1, |
| 111 | + "vscode-kubernetes.log-viewer.destination": "Webview", |
| 112 | + "vscode-kubernetes.log-viewer.wrap": true, |
| 113 | + // sonarqube |
| 114 | + "sonarlint.connectedMode.project": { |
| 115 | + "connectionId": "https://sonarqube.fabrique-numerique.fr", |
| 116 | + "projectKey": "cloud-pi-native_console_AYsa46O31ebDtzs-pYyZ" |
| 117 | + }, |
| 118 | + "prisma-smart-formatter.typescript.defaultFormatter": "dbaeumer.vscode-eslint", |
| 119 | + "prisma-smart-formatter.prisma.defaultFormatter": "Prisma.prisma" |
| 120 | +} |
0 commit comments