tasks / settings.json
ahmedj-turing's picture
Update settings.json
9bc90ba verified
Invalid JSON: Expected double-quoted property name in JSON at line 15, column 5
{
"[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,
}