restore pydocstyle

This commit is contained in:
Szwendacz99 2022-11-02 13:04:31 +01:00
parent e6f42b4bd1
commit c4c719241d

View file

@ -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',