Skip to content

Commit 2cd8b8b

Browse files
authored
Fix bug in the ieeetr_rules.check_article rule (#16)
Previously, the field `number` was considered to be ommitted in the rendered bibliography, which turned out to be a bug, as it is being rendered. This removes the `number` field from the `ommitted_fields` in the linter rule. Fixes #13
1 parent 41e2879 commit 2cd8b8b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

bibtex_linter/ieeetr_rules.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def check_article(entry: BibTeXEntry) -> List[str]:
2626
}
2727
omitted_fields: Set[str] = {
2828
"language",
29-
"number",
3029
"url",
3130
}
3231
invariant_violations.extend(check_required_fields(entry, required_fields))

0 commit comments

Comments
 (0)