File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed
Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 66
77<suppressions >
88 <!-- Suppress generated clients -->
9- <suppress files =" [/\\]core/client[/\\]" checks =" .*" />
10- <suppress files =" [/\\]orchestration/client[/\\]" checks =" .*" />
9+ <suppress files =" /core/client/" checks =" .*" />
10+ <suppress files =" /orchestration/client/" checks =" .*" />
11+ <!-- Suppress TODOs -->
12+ <suppress files =" OpenAiChatCompletionParameters.java" checks =" TodoComment" lines =" 95" />
13+ <suppress files =" OpenAiChatMessage.java" checks =" TodoComment" lines =" 255,271" />
1114</suppressions >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ stages:
2020 class : 67
2121 codeCheck :
2222 checkstyle :
23- high : ' 3 ' # Open tasks (to do or fix me)
23+ high : ' 0 '
2424 normal : ' 0'
2525 low : ' 0'
2626 spotbugs :
Original file line number Diff line number Diff line change 396396 <artifactId >maven-checkstyle-plugin</artifactId >
397397 <version >3.5.0</version >
398398 <configuration >
399- <configLocation >.pipeline/checkstyle.xml</configLocation >
399+ <configLocation >${project.rootdir} / .pipeline/checkstyle.xml</configLocation >
400400 <!-- Exclude generated clients -->
401- <suppressionsLocation >.pipeline/checkstyle-suppressions.xml</suppressionsLocation >
401+ <suppressionsLocation >${project.rootdir} / .pipeline/checkstyle-suppressions.xml</suppressionsLocation >
402402 <linkXRef >false</linkXRef >
403403 </configuration >
404404 <dependencies >
408408 <version >${checkstyle.version} </version >
409409 </dependency >
410410 </dependencies >
411+ <executions >
412+ <execution >
413+ <goals >
414+ <goal >check</goal >
415+ </goals >
416+ <phase >verify</phase >
417+ </execution >
418+ </executions >
411419 </plugin >
412420 <plugin >
413421 <groupId >org.apache.maven.plugins</groupId >
You can’t perform that action at this time.
0 commit comments