VScode from docker
- Docker in Visual Studio Code
- Python in a container
- Linting Python in Visual Studio Code
- Using Python environments in VS Code
- Use Docker Compose
- Developing inside a Container
Not the Docker side, just some VS code considerations
VS Code relies on two mechanisms for resolving python highlighing: environment and linter.
For environment you can check this, which basically says either python is availsble on the system in path, or pick virtual environmrnt you create, or provide a path to python executable in json.
this tells to install linter with pip, runnable from environment you configured or provide a path to linter in json.
So it looks the only things you need to replicate VSCode python linting is python executabe, installation of pylint and json configuration for vscode.
Смотир еще:
- [vscode]
- [docker]
- [docker-compose]