Skip to content

Commit 64b03f7

Browse files
authored
Update docs on overrides (#500)
1 parent 5570ea1 commit 64b03f7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

USING.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,13 @@ which is reported with the result. For example, when the
130130
`mandatory_glyphs` check reports that the `.notdef`
131131
glyph does not contain any outlines, it reports the message ID `empty` and
132132
a `WARN` status. To replace this status and have it return a `FAIL` instead,
133-
place this in the configuration file (if you are using YAML format):
133+
place this in the configuration file (if you are using the TOML format):
134134

135-
```
136-
overrides:
137-
mandatory_glyphs:
138-
empty: FAIL
135+
```toml
136+
[[overrides]]
137+
code = "empty"
138+
status = "FAIL"
139+
reason = "Because I think this would be really bad, actually"
139140
```
140141

141142
## Providing options to checks

0 commit comments

Comments
 (0)