File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/scala/codacy/pylint Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ val installAll =
4040 |python3 -m pip install pylint-common==0.2.2 &&
4141 |python -m pip install pylint-celery==0.3 &&
4242 |python3 -m pip install pylint-celery==0.3 &&
43- |python -m pip install pylint==1.6.4 --upgrade --ignore-installed --no-cache-dir &&
44- |python3 -m pip install pylint==1.6.4 --upgrade --ignore-installed --no-cache-dir &&
43+ |python -m pip install pylint==1.7.1 --upgrade --ignore-installed --no-cache-dir &&
44+ |python3 -m pip install pylint==1.7.1 --upgrade --ignore-installed --no-cache-dir &&
4545 |python -m pip uninstall -y pip &&
4646 |python3 -m pip uninstall -y pip &&
4747 |apk del wget ca-certificates git &&
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ object Pylint extends Tool {
185185
186186 configPart.map { configPart =>
187187 List (" python" + interpreter, " -m" , " pylint" ) ++
188- configPart ++ List (s " --msg-template= $msgTemplate" ) ++
188+ configPart ++ List (s " --msg-template= $msgTemplate" , " --output-format=parseable " ) ++
189189 rulesPart ++ additionalPlugins ++ files
190190 }
191191 }
You can’t perform that action at this time.
0 commit comments