We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5570ea1 commit 64b03f7Copy full SHA for 64b03f7
USING.md
@@ -130,12 +130,13 @@ which is reported with the result. For example, when the
130
`mandatory_glyphs` check reports that the `.notdef`
131
glyph does not contain any outlines, it reports the message ID `empty` and
132
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):
+place this in the configuration file (if you are using the TOML format):
134
135
-```
136
-overrides:
137
- mandatory_glyphs:
138
- empty: FAIL
+```toml
+[[overrides]]
+code = "empty"
+status = "FAIL"
139
+reason = "Because I think this would be really bad, actually"
140
```
141
142
## Providing options to checks
0 commit comments