Skip to content

Commit

Permalink
Added target-jsonl
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesHuisman committed Dec 30, 2022
1 parent e22446a commit 2cc0b00
Show file tree
Hide file tree
Showing 8 changed files with 2,863 additions and 3,008 deletions.
92 changes: 26 additions & 66 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,66 +1,26 @@
{
"name": "dagster-ext",
"dockerComposeFile": "docker-compose.yaml",
"service": "vscode",
"shutdownAction": "stopCompose",
"extensions": [
"ms-python.vscode-pylance",
"njpwerner.autodocstring",
"zhuangtongfa.material-theme",
"bungcip.better-toml",
"redhat.vscode-yaml",
"4ops.terraform",
"esbenp.prettier-vscode",
"waderyan.gitblame"
],
"workspaceFolder": "/workspace",
"postCreateCommand": "poetry install",
"settings": {
"python.linting.ignorePatterns": [
".vscode/*.py",
"**/site-packages/**/*.py",
".meltano"
],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true,
".pytest_cache": true,
"**.egg-info": true,
"build": true
},
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "100", "-S", "--fast"],
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.lintOnSave": true,
"python.linting.pylintArgs": ["--rcfile", "${workspaceFolder}/.pylintrc"],
"python.analysis.extraPaths": ["/workspace"],
"python.sortImports.args": ["--profile", "black"],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"workbench.colorCustomizations": {
"statusBar.background": "#3438bf",
"statusBar.foreground": "#cbcbda",
"statusBarItem.hoverBackground": "#1f238d",
"statusBarItem.remoteBackground": "#3438bf",
"statusBarItem.remoteForeground": "#e3e3eb"
},
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "zsh",
"args": ["-i"]
}
},
"terminal.integrated.defaultProfile.linux": "zsh"
}
}
{
"name": "dagster-ext",
"image": "ghcr.io/quantile-development/vscode-python-base:3.8",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
"ghcr.io/devcontainers-contrib/features/black:1": {},
"ghcr.io/devcontainers-contrib/features/isort:1": {},
"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": {}
},
"extensions": [
"ms-python.vscode-pylance",
"njpwerner.autodocstring",
"zhuangtongfa.material-theme",
"bungcip.better-toml",
"redhat.vscode-yaml",
"waderyan.gitblame",
"esbenp.prettier-vscode"
],
"postCreateCommand": "poetry config virtualenvs.in-project true && poetry install && git config --global --add safe.directory /workspaces/dagster-ext",
"remoteUser": "root",
"runArgs": ["--env-file", ".devcontainer/.env"]
}
31 changes: 0 additions & 31 deletions .devcontainer/docker-compose.yaml

This file was deleted.

Empty file modified .devcontainer/example.env
100644 → 100755
Empty file.
5 changes: 0 additions & 5 deletions .devcontainer/vscode.Dockerfile

This file was deleted.

Loading

0 comments on commit 2cc0b00

Please sign in to comment.