File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ import " ../justfile"
2+
3+ base_flags := """ \
4+ CODEQL_EXTRACTOR_KOTLIN_DIAGNOSTIC_LIMIT= \
5+ """
6+
7+ all_checks := default_db_checks + """ \
8+ --check-undefined-labels \
9+ --check-repeated-labels \
10+ --check-redefined-labels \
11+ --check-use-before-definition \
12+ --consistency-queries=""" + consistency_queries
13+
14+ [no-cd ]
15+ test * ARGS = " .": (_codeql_test " java" base_flags all_checks ARGS)
Original file line number Diff line number Diff line change 1+ import " ../justfile"
2+
3+ base_flags := """ \
4+ CODEQL_EXTRACTOR_KOTLIN_DIAGNOSTIC_LIMIT= \
5+ CODEQL_KOTLIN_LEGACY_TEST_EXTRACTION_KOTLIN2=true \
6+ """
7+
8+ all_checks := default_db_checks + """ \
9+ --check-undefined-labels \
10+ --check-repeated-labels \
11+ --check-redefined-labels \
12+ --check-use-before-definition \
13+ --consistency-queries=""" + consistency_queries
14+
15+ [no-cd ]
16+ test * ARGS = " .": (_codeql_test " java" base_flags all_checks ARGS)
You can’t perform that action at this time.
0 commit comments