Skip to content

Commit 95e43f7

Browse files
committed
🌿 Clojure support
1 parent 1bb20b6 commit 95e43f7

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

ReleaseNotes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
- Important Static methods made available to `Clojure` and `Java`
1414
- Reduction of the need to create instances on the fly.
1515
3. LCov Expected Values Parsing Improvements - The absence of some values would generate an unwanted exception
16+
4. Clojure's language support
17+
1618
#### Release 0.1.5 - 2022/02/02
1719

1820
###### Features

src/main/kotlin/org/jesperancinha/plugins/omni/reporter/parsers/Parsers.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,6 @@ enum class Language(val ext: List<String>, val lang: String) {
6060
SCALA(listOf("scala"), "Scala"),
6161
PYTHON(listOf("py"), "Python"),
6262
JAVASCRIPT(listOf("js"), "JavaScript"),
63-
TYPESCRIPT(listOf("ts", "tsx"), "TypeScript")
63+
TYPESCRIPT(listOf("ts", "tsx"), "TypeScript"),
64+
CLOJURE(listOf("clj"), "Clojure")
6465
}

0 commit comments

Comments
 (0)