Skip to content

Commit e57b3cf

Browse files
authored
Merge pull request #23 from codacy/disable-colored-output
Disable colored output
2 parents 11a1ee3 + 911ae04 commit e57b3cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 &&

src/main/scala/codacy/pylint/Pylint.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)