diff --git a/analysis/CHANGELOG.md b/analysis/CHANGELOG.md index adf8aacf9d..d0ccee59b6 100644 --- a/analysis/CHANGELOG.md +++ b/analysis/CHANGELOG.md @@ -9,10 +9,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/) ### Added 🚀 -- Add new UnifiedParser that is based on treesitter and works without external tools [#4070](https://github.com/MaibornWolff/codecharta/pull/4070) - - It currently supports: +- Add new UnifiedParser that is based on [treesitter](https://tree-sitter.github.io/tree-sitter/index.html) and works without external tools [#4070](https://github.com/MaibornWolff/codecharta/pull/4070) + - Currently supported Languages (will be further extended): + - Javascript - Typescript + - Java - Kotlin + - C# + - Python + - Currently supported Metrics (will be further extended): + - Complexity + - Comment lines + - Lines of code + - Real lines of code - It is also available when calling the ccsh without parameters [#4102](https://github.com/MaibornWolff/codecharta/pull/4102) - Add auto-completing file input to all interactive dialogs [#4081](https://github.com/MaibornWolff/codecharta/pull/4081) diff --git a/analysis/analysers/parsers/UnifiedParser/README.md b/analysis/analysers/parsers/UnifiedParser/README.md index 42d8711ed2..74ff418f43 100644 --- a/analysis/analysers/parsers/UnifiedParser/README.md +++ b/analysis/analysers/parsers/UnifiedParser/README.md @@ -6,9 +6,12 @@ The Unified Parser is parser to generate code metrics from a source code file or ## Supported Languages +- Javascript - Typescript +- Java - Kotlin - C# +- Python ## Supported Metrics diff --git a/gh-pages/_data/navigation.yml b/gh-pages/_data/navigation.yml index 09575ca661..d40dda788c 100644 --- a/gh-pages/_data/navigation.yml +++ b/gh-pages/_data/navigation.yml @@ -77,6 +77,8 @@ docs: url: "/docs/parser/git-log" - title: "SVN Log" url: "/docs/parser/svn-log" + - title: "Unified" + url: "/docs/parser/unified" - title: "CCSH - Exporter" children: - title: "Csv" diff --git a/gh-pages/_docs/05-parser/05-unified.md b/gh-pages/_docs/05-parser/05-unified.md index a8c659909f..de6e1ed854 100644 --- a/gh-pages/_docs/05-parser/05-unified.md +++ b/gh-pages/_docs/05-parser/05-unified.md @@ -15,8 +15,12 @@ The Unified Parser is parser to generate code metrics from a source code file or ## Supported Languages +- Javascript - Typescript +- Java - Kotlin +- C# +- Python ## Supported Metrics