惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - 司徒正美
V
Visual Studio Blog
博客园 - 【当耐特】
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Jina AI
Jina AI
宝玉的分享
宝玉的分享
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Use Pylint for Code Checking inside Neovim
2018-09-20 · via jdhao's digital space

Pylint is a popular static code checker which can effectively find the possible bugs in your source code. It is easy to install pylint with conda or pip:

conda install pylint
# pip install pylint

Pylint configuration#

The pylint configuration file is named .pylintrc which controls its behaviors. Pylint will try to read the configuration from default locations. The locations of the configuration file vary from system to system:

  • Linux/Mac: ~/.pylintrc
  • Windows: %userprofile%\.pylintrc (%userprofile% is a system variable. You can use echo %userprofile% to show its value.)

You can disable certain warnings and errors in the configuration file, which will apply globally for every Python source file you check.

Usage#

pylint warning “module has no member"#

For Python packages which are partly written in C/CPP, such as Numpy and PyTorch, pylint may not be able to find the relevant method for an object. You can set up in [TYPECHECK] section of .pylintrc to disable warning about unfound method for Numpy and PyTorch:

[TYPECHECK]

# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=numpy.*,torch.*

Disable warning for a certain line#

If you only want to disable a certain warning or error for a specific line. You can add #pylint: disable=some-message,another-message in the end of the line. For example:

sys.path.insert(0, '..')
import mymodule  #pylint: disable=import-error

You can also use the warning or error code instead of the actual message:

sys.path.insert(0, '..')
import mymodule  #pylint: disable=E0401

Disable warning for a certain file#

If you want to disable a certain warning or error for a particular file, you can add #pylint: disable=some-message at the top of the file.

Find the msg id of a certain message#

To disable a certain warning, we want to know its message id. On the command line, use the following command:

pylint --list-msgs |grep message

For example, to find the message id of unnecessary-comprehension, we can use:

pylint --list-msgs|grep unnecessary-comprehension

We may also find the message id from pylint doc.

Configure and use pylint with Neovim#

To use pylint inside Neovim, you need to install a linting plugin. Neomake is a good choice. The minimum configuration for Neomake is:

" when to activate neomake
call neomake#configure#automake('nrw', 50)

" which linter to enable for Python source file linting
let g:neomake_python_enabled_makers = ['pylint']

Neomake will automatically run pylint for currently edited file and show warning and error symbols in sign column. You can also use :lopen to open the location list window to see all the warnings and errors. To navigate the location list, use :lprevious and :lnext to go to the previous and next item on the list respectively.

How to ignore warnings in Neomake#

When we lint our Python code with Neomake (using Pylint), it is often the case that our code can not pass the checker 100%. A lot of warnings and errors may occur, e.g., no docstring for method, variable names not conforming to standard. For some warnings, we do not want them to occur. How to ignore these warnings?

For example, if we want to ignore invalid-name(corresponding code is C0103) and missing-docstring( corresponding code C0111),we can use two methods.

Configure in the nvim config file#

The first way is to configure through Nvim configuration file. Add the following settings to your Nvim configuration:

let g:neomake_python_pylint_maker = {
  \ 'args': [
  \ '-d', 'C0103, C0111',
  \ '-f', 'text',
  \ '--msg-template="{path}:{line}:{column}:{C}: [{symbol}] {msg}"',
  \ '-r', 'n'
  \ ],
  \ 'errorformat':
  \ '%A%f:%l:%c:%t: %m,' .
  \ '%A%f:%l: %m,' .
  \ '%A%f:(%l): %m,' .
  \ '%-Z%p^%.%#,' .
  \ '%-G%.%#',
  \ }

let g:neomake_python_enabled_makers = ['flake8', 'pylint']

Find the code corresponding to a warning and paste it in the string after -d options. Separate different warning codes with ,.

Configure in .pylintrc#

The second way is to create a .pylintrc file and ignore certain warning in this file. First, we need to generate .pylintrc under the home directory:

pylint --disable=invalid-namae,missing-docstring --generate-rcfile > ~/.pylintrc

If you want to ignore new warnings, you just need to edit .pylintrc, find the part starting with disable= and add the new warnings to the long list of existing warnings. The format should conform to the existing format in the .pylintrc file.

References#