Visual Studio code with PyLint and autoPep8: How can I avoid PyLint to complain about my line length?
I figured out how to do this. Add this line to your settings:
"python.linting.pep8Args": ["--max-line-length=100"],
For pycodestyle
in Vscode 1.15.1:
"python.linting.pycodestyleArgs": ["--max-line-length=100"],