File size: 3,462 Bytes
cd47cf5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | {
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
},
"[rust]": {
"editor.semanticHighlighting.enabled": false
},
"cmake.options.statusBarVisibility": "visible",
"debug.onTaskErrors": "showErrors",
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.maxComputationTime": 0,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "'CaskaydiaCove Nerd Font Mono', 'Consolas', 'Courier New', 'Droid Sans Mono', 'monospace'",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.inlineSuggest.enabled": true,
"editor.rulers": [
79
],
"editor.unicodeHighlight.invisibleCharacters": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmPasteNative": false,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb",
"Cargo.toml": "Cargo.lock",
".sqlite": "${capture}.${extname}-",
".db": "${capture}.${extname}-",
".sqlite3": "${capture}.${extname}-",
".db3": "${capture}.${extname}-",
".sdb": "${capture}.${extname}-",
".s3db": "${capture}.${extname}-"
},
"makefile.configureOnOpen": true,
"notebook.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"notebook.formatOnSave.enabled": true,
"notebook.lineNumbers": "on",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.typeCheckingMode": "standard",
"ruff.lineLength": 79,
"security.workspace.trust.untrustedFiles": "open",
"sonarlint.rules": {
"python:S5713": {
"level": "on"
}
},
"window.zoomLevel": 1,
"workbench.editorAssociations": {
"*.csv": "gc-excelviewer-csv-editor",
"*.db": "sqlite-viewer.option"
},
"workbench.startupEditor": "none",
"workbench.iconTheme": "material-icon-theme",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false,
"python": true
},
"terminal.integrated.enableMultiLinePasteWarning": false,
"workbench.editor.empty.hint": "hidden",
"redhat.telemetry.enabled": true,
"github.copilot.nextEditSuggestions.enabled": true,
"git.openRepositoryInParentFolders": "never",
"docker.extension.enableComposeLanguageServer": false,
"@azure.argTenant": "",
"github.copilot.chat.codeGeneration.instructions": [],
"workbench.colorTheme": "Tokyo Night Storm",
"editor.stickyScroll.enabled": false,
"workbench.tree.enableStickyScroll": false,
} |