You can use the following quick trick when developing with Python inside of a Docker container.
Refer: https://janikarhunen.fi/linting-python-in-vscode
touch ~/.config/flake8
nano ~/.config/flake8
[flake8]
ignore = E501
exclude =
# No need to traverse our git directory
.git,
venv
max-complexity = 10
