From d942621280c7d42705239d047a645f630cba2597 Mon Sep 17 00:00:00 2001 From: JulesHuisman Date: Fri, 30 Dec 2022 12:03:01 +0000 Subject: [PATCH] Ignored folders --- .devcontainer/devcontainer.json | 3 +-- .vscode/settings.json | 12 +++++++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index badece4..abdb0df 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -8,8 +8,7 @@ "ghcr.io/devcontainers-contrib/features/meltano:1": { "version": "2.12.0" }, - "ghcr.io/devcontainers-contrib/features/poetry:1": {}, - "ghcr.io/devcontainers-contrib/features/pylint:1": {} + "ghcr.io/devcontainers-contrib/features/poetry:1": {} }, "extensions": [ "ms-python.vscode-pylance", diff --git a/.vscode/settings.json b/.vscode/settings.json index 7731c26..8a69b14 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,13 @@ { - "python.analysis.extraPaths": ["/workspace"] + "python.analysis.extraPaths": ["/workspaces/dagster-ext"], + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + "**/Thumbs.db": true, + "**/__pycache__": true, + "**/dist": true + } }