I'm using pep8 to check for coding guidelines. I am getting results only for the current directory. And not all directory or sub directory inside it. How to do that?
When running it from the level of container/project, I don't get pyc files' errors. When I run it from container/project/app, I get the pyc files' errors. Following is the tree structure:
container
project
app
__init__.py
admin.py
models.py
views.py
tests.py
file1.py
project
__init__.py
urls.py
wsgi.py
settings.py
templates
__init__.py
home.html
page1.html
manage.py
pylintrc
setup.cfg
README
And following is the content of setup.cfg:
[pep8]
ignore=E122,E123,E128
exclude=pylintrc,setup.cfg
max-line-length=80