File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 6868 install :
6969 - *upgrade_python_toolset
7070 - *install_deps
71- - pip install --upgrade "pylint >= 2.2"
71+ - pip install --upgrade "pylint >= 2.2" isort[pyproject,requirements]
7272 script :
7373 - pylint exec_helpers
7474 - << : *static_analysis
Original file line number Diff line number Diff line change @@ -80,7 +80,8 @@ commands = pip install ./ -vvv -U
8080[testenv:pylint]
8181usedevelop = False
8282deps =
83- pylint>=2
83+ pylint>=2.2
84+ isort[pyproject,requirements]
8485 -r{toxinidir}/CI_REQUIREMENTS.txt
8586commands = pylint exec_helpers
8687
@@ -98,16 +99,16 @@ exclude =
9899 docs
99100ignore =
100101 E203,
101- W503
102- D401,
103- D202,
104- D203,
105- D213
106102# whitespace before ':'
103+ W503,
107104# line break before binary operator
105+ D401,
108106# First line should be in imperative mood; try rephrasing
107+ D202,
109108# No blank lines allowed after function docstring
109+ D203,
110110# 1 blank line required before class docstring
111+ D213
111112# Multi-line docstring summary should start at the second line
112113show-pep8 = True
113114show-source = True
@@ -117,12 +118,12 @@ max-line-length = 120
117118[pydocstyle]
118119ignore =
119120 D401,
120- D202,
121- D203,
122- D213
123121# First line should be in imperative mood; try rephrasing
122+ D202,
124123# No blank lines allowed after function docstring
124+ D203,
125125# 1 blank line required before class docstring
126+ D213
126127# Multi-line docstring summary should start at the second line
127128
128129[testenv:docs]
You can’t perform that action at this time.
0 commit comments