File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"java.configuration.updateBuildConfiguration" : " automatic" ,
3
3
"java.compile.nullAnalysis.mode" : " automatic" ,
4
- "java.checkstyle.configuration" : " ${workspaceFolder}/config/checkstyle/ checkstyle.xml" ,
4
+ "java.checkstyle.configuration" : " ${workspaceFolder}/checkstyle.xml" ,
5
5
"java.checkstyle.version" : " 10.10.0" ,
6
6
"sonarlint.connectedMode.project" : {
7
7
"connectionId" : " sir-gon" ,
Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ COPY ./CODE_OF_CONDUCT.md ${WORKDIR}/
31
31
# Code source
32
32
COPY ./algorithm-exercises-java ${WORKDIR}/algorithm-exercises-java
33
33
COPY ./settings.gradle ${WORKDIR}/
34
- COPY ./config ${WORKDIR}/config
35
34
COPY ./Makefile ${WORKDIR}/
36
35
36
+ # code linting conf
37
+ COPY ./checkstyle.xml ${WORKDIR}/checkstyle.xml
38
+
37
39
# markdownlint conf
38
40
COPY ./.markdownlint.yaml ${WORKDIR}/
39
41
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ tasks.named('test') {
43
43
44
44
checkstyle {
45
45
toolVersion = ' 10.17.0'
46
- configFile = file(" ${ rootDir} /config/checkstyle/ checkstyle.xml" )
46
+ configFile = file(" ${ rootDir} /checkstyle.xml" )
47
47
maxErrors = 0
48
48
maxWarnings = 0
49
49
showViolations = true
File renamed without changes.
You can’t perform that action at this time.
0 commit comments