mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-23 09:30:57 -05:00
23 lines
277 B
TOML
23 lines
277 B
TOML
|
bin.name = "typos"
|
||
|
args = "--file-list -"
|
||
|
stdin = """
|
||
|
b.fail
|
||
|
d.fail
|
||
|
"""
|
||
|
stdout = """
|
||
|
error: `hello` should be `goodbye`
|
||
|
--> b.fail:1:1
|
||
|
|
|
||
|
1 | hello
|
||
|
| ^^^^^
|
||
|
|
|
||
|
error: `hello` should be `goodbye`
|
||
|
--> d.fail:1:1
|
||
|
|
|
||
|
1 | hello
|
||
|
| ^^^^^
|
||
|
|
|
||
|
"""
|
||
|
stderr = ""
|
||
|
status.code = 2
|