I have my flake8
config file in ~/.config/flake8
[flake8]
max-line-length = 100
However when I run flake8
the config file is not picked up. I know that because i still get warnings over lines longer than 79 char.
I'm on redhat, but the same happens on mac.
I use pyenv. Global is 2.7.6 (not even sure this is relevant)
flake8
? – Pullmanflake8 --max-line-length=100 --ignore=E501 project > flake8_output.txt
. How does that work for you? – Pullman~/.flake8
on MacOS. Possibly the documentation is incorrect. – Importation