Skip to content
Merged
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
19 changes: 10 additions & 9 deletions data/htagcli.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,23 +106,24 @@ max_size = { width = 1000, height = 1000 }
[checks.disc_same_dir]
enable = true

# Verify that disc-level tags are consistent across all tracks of a disc
[checks.disc_tags]
enable = true
tags = ["albumartist", "album", "year", "genre"]
# Verify that disc-level tags are consistent across all tracks of a disc. No
# need to check for album, artist, or albumartist tags here as it is already
# enforced by htagcli when grouping tracks into discs.
[checks.disc_tags] enable = true tags = ["year", "genre"]

# Verify that track numbers in each disc are sequential starting from 1
[checks.disc_tracks_sequential]
enable = true

# Verify that disc numbers within an album are sequential starting from 1
[checks.album_discs_sequential]
# Verify that album-level tags are consistent across all discs of an album.
# Same as above, no need to check for album, artist, or albumartist tags here.
[checks.album_tags]
enable = true
tags = ["year", "genre"]

# Verify that album-level tags are consistent across all discs of an album
[checks.album_tags]
# Verify that disc numbers within an album are sequential starting from 1
[checks.album_discs_sequential]
enable = true
tags = ["albumartist", "album", "year", "genre"]

# Verify that all tracks from an artist have the same genre
[checks.artist_same_genre]
Expand Down