Skip to content

Commit

Permalink
Adding filter to exclude Template issues (tdwg/bdq#295 and tdwg/bdq#296
Browse files Browse the repository at this point in the history
…) from translation of markdown tables to csv. Adding lock file pattern to gitignore.
  • Loading branch information
chicoreus committed Aug 13, 2024
1 parent 1eed2c7 commit 3ce626b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ output.csv
annotations.java
supplementalissuelist.json
multirecord_measures.csv
.~lock*
2 changes: 2 additions & 0 deletions src/main/java/org/kurator/issueconverter/BDQConvert.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ DQ Dimension,Severity,Warning Type,Source,References,Specification Last Updated,
}
if (issueLabels.toString().contains("DO NOT IMPLEMENT")) {
// skip this test, do not add to output spreadsheet.
} else if (issueLabels.toString().contains("Template")) {
// template issues for generated measures, skip
} else {
// generate output

Expand Down

0 comments on commit 3ce626b

Please sign in to comment.