I\'m using python-mode for Vim, I prefer for there to be 120 character lines rather than the stark 80 as defined in the PEP8 standard.
In python-mode, this is easy. I j
You can pass additional arguments to each linter. For pylint, you can use:
let g:syntastic_python_pylint_post_args="--max-line-length=120"