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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ A more detailed list of changes is available in the corresponding milestones for
#### On the OpenType profile
- **[opentype/monospace]**: Ensure check works with monospace OTF fonts (PR #5051)

- **[opentype/STAT/ital_axis]**: Skip check for fonts without STAT table (issue #4998)

## 1.1.0 (2025-Oct-02)
- Replace deprecated `pkg_resources` by `importlib.resources` (issue #5028)

Expand Down
2 changes: 1 addition & 1 deletion Lib/fontbakery/checks/opentype/STAT/ital_axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_STAT_axis_value(ttFont, tag):

def check_has_ital(font):
if "STAT" not in font.ttFont:
yield FAIL, Message(
yield SKIP, Message(
"no-stat",
f"Font {font.file} has no STAT table",
)
Expand Down
Loading