How can I set the Python max allowed line length to 120 in Syntastic for Vim?

后端 未结 4 760
时光说笑
时光说笑 2021-02-12 13:40

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

相关标签:
4条回答
  • 2021-02-12 14:07

    There is a file named - defaults.py inside your virtual environment folder - ......./lib/python3.6/site-packages/flake8

    You can change the value of max-line-length in that file.

    0 讨论(0)
  • 2021-02-12 14:10

    You can pass additional arguments to each linter. For pylint, you can use:

    let g:syntastic_python_pylint_post_args="--max-line-length=120"
    
    0 讨论(0)
  • 2021-02-12 14:16

    This is now configured globally in ~/.config/flake8 in linux and ~/.flake in windows. The file can look like this.

    [flake8]
    max-line-length = 120
    

    Have a look at their documentation for per project settings: http://flake8.readthedocs.io/en/latest/user/configuration.html#project-configuration

    0 讨论(0)
  • 2021-02-12 14:22

    I would just recommend you disable the length checking by adding this line to your .vimrc dot file:

    let g:pymode_lint_ignore = "E501,W"
    
    0 讨论(0)
提交回复
热议问题