mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-26 11:01:00 -05:00
30 lines
491 B
TOML
30 lines
491 B
TOML
bin.name = "typos"
|
|
stdin = ""
|
|
stdout = """
|
|
error: `egal` should be `equal`
|
|
--> ./sample.jl:1:7
|
|
|
|
|
1 | # one egal: ===
|
|
| ^^^^
|
|
|
|
|
error: `egals` should be `equals`
|
|
--> ./sample.jl:2:9
|
|
|
|
|
2 | # three egals: === === ===
|
|
| ^^^^^
|
|
|
|
|
error: `modul` should be `module`
|
|
--> ./sample.jl:5:5
|
|
|
|
|
5 | var modul = \"hello\";
|
|
| ^^^^^
|
|
|
|
|
error: `usig` should be `using`
|
|
--> ./sample.jl:6:5
|
|
|
|
|
6 | var usig = \"hello\";
|
|
| ^^^^
|
|
|
|
|
"""
|
|
stderr = ""
|
|
status.code = 2
|