Skip to content

Commit 933e716

Browse files
author
Vladimir Kotal
committed
enable pylint
fixes #2440
1 parent 6093880 commit 933e716

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

opengrok-tools/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ Portions Copyright (c) 2017-2018, Chris Fraire <[email protected]>.
124124
<version>1.6.0</version>
125125
<executions>
126126
<execution>
127+
<id>Python flake8</id>
127128
<configuration>
128129
<executable>flake8</executable>
129130
<arguments>
@@ -138,6 +139,20 @@ Portions Copyright (c) 2017-2018, Chris Fraire <[email protected]>.
138139
<goal>exec</goal>
139140
</goals>
140141
</execution>
142+
<execution>
143+
<id>Python lint</id>
144+
<configuration>
145+
<executable>pylint</executable>
146+
<arguments>
147+
<argument>-E</argument>
148+
<argument>${project.build.sourceDirectory}/opengrok_tools</argument>
149+
</arguments>
150+
</configuration>
151+
<phase>verify</phase>
152+
<goals>
153+
<goal>exec</goal>
154+
</goals>
155+
</execution>
141156
<execution>
142157
<id>generate python env</id>
143158
<configuration>

0 commit comments

Comments
 (0)