{ "terminal.integrated.inheritEnv": true, "terminal.integrated.env.linux": {"PYTHONPATH": "${workspaceFolder}"}, "python.languageServer": "Pylance", "jupyter.interactiveWindow.textEditor.executeSelection": true, "jupyter.interactiveWindow.creationMode": "perFile", "notebook.cellToolbarLocation": { "default": "right", "jupyter-notebook": "right" }, "editor.formatOnType": true, "editor.defaultFormatter": "ms-python.black-formatter", "python.analysis.typeCheckingMode": "strict", "editor.codeActionsOnSave": { "source.organizeImports": "explicit" }, "notebook.lineNumbers": "on", "workbench.editor.empty.hint": "hidden", "python.analysis.diagnosticSeverityOverrides": { "reportArgumentType": "none", "reportCallIssue": "none", "reportUnknownVariableType": "none", "reportUnknownLambdaType": "none", "reportUnknownParameterType": "none", "reportUnknownArgumentType": "none", "reportMissingParameterType": "none", "reportUnknownMemberType": "none", "reportMissingTypeStubs": "none", "reportUnnecessaryIsInstance": "none", "reportConstantRedefinition": "none" }, "python.analysis.exclude": [ "zombie_eda.py" ], "oneDarkPro.editorTheme": "Panda", "[python]": { "diffEditor.ignoreTrimWhitespace": false, "gitlens.codeLens.symbolScopes": [ "!Module" ], "editor.formatOnType": true, "editor.wordBasedSuggestions": "off" }, "editor.fontFamily": "Fira Code", "editor.fontLigatures": true, "notebook.output.scrolling": true, "notebook.output.textLineLimit": 19, "notebook.scrolling.experimental.anchorToFocusedCell": "on", "pylint.args": [ "--disable=missing-module-docstring", "--disable=missing-class-docstring", "--disable=missing-function-docstring", "--disable=too-many-arguments", "--disable=too-many-locals", "--disable=too-many-statements", "--disable=unsubscriptable-object", "--disable=trailing-whitespace", "--disable=unsupported-assignment-operation", "--max-line-length=150", "--disable=invalid-name", "--disable=broad-exception-caught" ], "flake8.args": [ "--max-line-length=150", ], "debug.console.fontFamily": "Consolas", "[jsonc]": { "editor.defaultFormatter": "vscode.json-language-features" }, "python.analysis.extraPaths": [ "src" ], "notebook.markup.fontSize": 13, "workbench.iconTheme": "vscode-icon-theme", "editor.minimap.enabled": false, "conventionalCommits.lineBreak": "\\n", "editor.tokenColorCustomizations": { "[*Light*]": { "textMateRules": [ { "scope": "ref.matchtext", "settings": { "foreground": "#000" } } ] }, "[*Dark*]": { "textMateRules": [ { "scope": "ref.matchtext", "settings": { "foreground": "#fff" } } ] }, "textMateRules": [ { "scope": "variable.parameter", "settings": { "foreground": "#A64833" // Set this to your desired color } }, { "scope": "variable.other", "settings": { "foreground": "#000000" // Set this to your desired color } }, { "scope": "string", "settings": { "foreground": "#067D17" // Set this to your desired color } }, { "scope": "entity.name.function", "settings": { "foreground": "#006280" // Set this to your desired color } }, { "scope": "keyword.other", "settings": { "foreground": "#0033B3" // Set this to your desired color } }, { "name": "One Dark italic", "scope": [ "comment", "entity.other.attribute-name", "keyword", "markup.underline.link", "storage.modifier", "storage.type", "string.url", "variable.language.super", "variable.language.this" ], "settings": { "fontStyle": "italic" } }, { "name": "One Dark italic reset", "scope": [ "keyword.operator", "keyword.other.type", "storage.modifier.import", "storage.modifier.package", "storage.type.built-in", "storage.type.function.arrow", "storage.type.generic", "storage.type.java", "storage.type.primitive" ], "settings": { "fontStyle": "" } } ] }, "editor.semanticHighlighting.enabled": true, "workbench.colorTheme": "Grey Light+ Pro", "workbench.colorCustomizations": { "notebook.cellEditorBackground": "#EEEEEE", "notebook.cellBorderColor": "#CCCCCC", "notebook.cellBackground": "#FFFFFF", "notebook.cellInsertionIndicator": "#00FF00", "notebook.outputContainerBackgroundColor": "#FFFFFF", "notebook.focusedCellBorderColor": "#007ACC", "editor.background": "#E8E8E8", "editorGroup.border": "#A4A4A4", // ???? "editorGroupHeader.tabsBorder": "#A4A4A4", // Border between the editor area and the tab area "editorLineNumber.foreground": "#ADADAD", "editorLineNumber.activeForeground": "#4D4DEE" , "editorGutter.background": "#F2F2F2", "editorHoverWidget.background": "#F7F7F7", // Background color of the hover popup "editorHoverWidget.border": "#8B8B8B", // Border color of the hover popup // "editorHoverWidget.foreground": "#CCCCCC", // Text color inside the hover popup // "editorHoverWidget.highlightForeground": "#FFFFFF", // Color of highlighted text inside the hover popup "tab.border": "#A4A4A4", // Border between tabs "panel.border": "#A4A4A4", // This sets the border color for panels "sideBar.border": "#A4A4A4", // This sets the border color for the sidebar "activityBar.border": "#A4A4A4", // This sets the border color for the activity bar "sideBarSectionHeader.border": "#A4A4A4", }, "git.autofetch": true, "explorer.confirmDelete": false, "editor.tabCompletion": "on", "editor.inlineSuggest.suppressSuggestions": true, "cody.autocomplete.advanced.provider": "experimental-ollama", "notebook.scrolling.revealNextCellOnExecute": "firstLine", "editor.hover.enabled": false, "jupyter.disableJupyterAutoStart": true, "editor.quickSuggestions": { "other": false, "comments": false, "strings": false }, "notebook.codeActions.enabled": false, "python.autoCallSignatureShow": "never", "editor.parameterHints.enabled": false, "interactiveWindow.executeWithShiftEnter": true, "debugpy.debugJustMyCode": false, "jupyter.debugJustMyCode": false, "editor.fontSize": 13, "debug.console.fontSize": 13, "workbench.editor.revealIfOpen": true, // "python.analysis.logLevel": "Trace" }