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
3 changes: 2 additions & 1 deletion doc/changes/changes_4.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ We also added a whole section about understanding and fixing broken links betwee

## Documentation

* #427: Removed old `CHANGELOG.md` file and merged missing parts into release history
* #427: Removed old `CHANGELOG.md` file and merged missing parts into release history.
* #431: Documented "unwanted coverage" in user guide.
* #440: Added Tag importer support for TOML files.
6 changes: 5 additions & 1 deletion doc/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,6 @@ recognized file types:
* Java (`.java`)
* JavaScript (`.js`)
* TypeScript (`.ts`)
* JSON (`.json`)
* Lua (`.lua`)
* Objective C (`.m`, `.mm`)
* Perl (`.pl`, `.pm`)
Expand All @@ -735,6 +734,11 @@ recognized file types:
* Terraform (`.tf`, `.tfvars`)
* Windows batch files (`.bat`)

**Configuration and Serialization Formats**

* JSON (`.json`)
* TOML (`.toml`)

**Markup languages**

* HTML (`.html`, `.htm`, `.xhtml`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public class TagImporterFactory extends ImporterFactory
"rs", // Rust
"sh", "bash", "zsh", // Shell programming
"swift", // Swift
"toml", // Tom's Obvious Minimal Language : a config file format
"tf", "tfvars", // Terraform
"sql", "pls" // Database related
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected List<String> getSupportedFilenames()
"foo.htm", "foo.html", "foo.ini", "foo.js", "foo.ts", "foo.json", "foo.lua", "foo.m",
"foo.mm", "foo.php", "foo.pl", "foo.pls", "foo.pm", "foo.py", "foo.sql", "foo.r",
"foo.rs", "foo.sh", "foo.yaml", "foo.yml", "foo.xhtml", "foo.zsh", "foo.clj", "foo.kt", "foo.scala",
"foo.pu", "foo.puml", "foo.plantuml", "foo.go", "foo.robot", "foo.tf", "foo.tfvars");
"foo.pu", "foo.puml", "foo.plantuml", "foo.go", "foo.robot", "foo.tf", "foo.tfvars", "foo.toml");
}

@Override
Expand Down
Loading