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