I've been using the default python linter in VS Code and would like to increase the line length before the linter decides to break up a line. I've tried adding this to settings.json:
"python.linting.pylintArgs": [
"--max-line-length=120",
],
but the behavior hasn't changed. It's still breaking lines at 80 columns.
