Skip to content

Commit 6aa4c6d

Browse files
committed
added another build without md file generation
1 parent 6ad092b commit 6aa4c6d

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHECKS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
###Report of default checks on CheckStyle library itself
2+
3+
`Info: LINE - 4: Invalid enum member signature: INFO (name should be ~/^[a-z]+[a-zA-Z0-9]*$/)`
4+
5+
`Info: LINE - 5: Invalid enum member signature: WARNING (name should be ~/^[a-z]+[a-zA-Z0-9]*$/)`
6+
7+
`Info: LINE - 6: Invalid enum member signature: ERROR (name should be ~/^[a-z]+[a-zA-Z0-9]*$/)`
8+
9+
`Total Issues: 3 (Errors: 0 Warnings: 0 Infos: 3)`

build.hxml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
-main checkstyle.Main
1212
-D checkstyle
1313
-neko run.n
14+
-cmd neko run -s checkstyle -r xml -p resources/static-analysis.xml -report
1415

1516
--next
16-
17-
-cmd neko run -s checkstyle -r xml -p resources/static-analysis.xml -report
17+
-main checkstyle.Main
18+
-neko run.n
1819

1920
--next
2021
-cp test

checkstyle/Report.hx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
package checkstyle;
22

3+
import sys.io.File;
34
#if checkstyle
45
import sys.io.FileOutput;
5-
import sys.io.File;
66
#end
77

88
class Report {
99

1010
var staticAnalysisXML:Xml;
11+
12+
#if checkstyle
1113
var reportFile:FileOutput;
14+
#end
1215

1316
public function new() {}
1417

run.n

-814 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)