restore pydocstyle
This commit is contained in:
parent
e6f42b4bd1
commit
c4c719241d
1 changed files with 5 additions and 1 deletions
|
@ -1,9 +1,13 @@
|
|||
require('lint').linters_by_ft = {
|
||||
python = { 'flake8', 'pylint', 'pycodestyle', },
|
||||
python = { 'flake8', 'pylint', 'pycodestyle', 'pydocstyle'},
|
||||
php = { 'phpcs' },
|
||||
markdown = { 'markdownlint' }
|
||||
}
|
||||
|
||||
local pydocstyle = require('lint.linters.pydocstyle')
|
||||
pydocstyle.args = {
|
||||
'--ignore=D100', -- disable missing module docstring info
|
||||
}
|
||||
local pylint = require('lint.linters.pylint')
|
||||
pylint.args = {
|
||||
'-f',
|
||||
|
|
Loading…
Reference in a new issue