mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
22 lines
284 B
TOML
22 lines
284 B
TOML
bin.name = "typos"
|
|
args = "--sort --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
|