Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions analysis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
3 changes: 3 additions & 0 deletions analysis/analysers/parsers/UnifiedParser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions gh-pages/_data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions gh-pages/_docs/05-parser/05-unified.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down