Devcontainer compatibility fixes #2279

Merged
PeterSurda merged 1 commits from devcontainer-update-compat into v0.6 2025-02-07 05:54:11 +01:00
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
python-setuptools \ python-setuptools \
python2.7 \ python2.7 \
python2.7-dev \ python2.7-dev \
python-six \
python3 \ python3 \
python3-dev \ python3-dev \
python3-flake8 \ python3-flake8 \

View File

@ -18,7 +18,7 @@
], ],
"settings": { "settings": {
"flake8.args": ["--config=setup.cfg"], "flake8.args": ["--config=setup.cfg"],
"pylint.args": ["--rcfile=setup.cfg"], "pylint.args": ["--rcfile=setup.cfg", "--init-hook", "import sys;sys.path.append('src')"],
"terminal.integrated.shell.linux": "/usr/bin/zsh", "terminal.integrated.shell.linux": "/usr/bin/zsh",
"terminal.integrated.defaultProfile.linux": "zsh", "terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'", "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'",