LADRSolutions/lint.toml
szdytom bbd1b9b32b
A simple linter script
Signed-off-by: szdytom <szdytom@qq.com>
2025-07-13 22:23:17 +08:00

18 lines
408 B
TOML

[[rule]]
name = "trailing-whitespace"
pattern = "\\s+\\n$"
enforce = true
comment = "Trailing whitespace at line end"
[[rule]]
name = "not-centered-dots-within-big-notations"
pattern = "[=+][\\s&]*dots[^\\.]"
enforce = true
comment = "Please use dots.c within = or +"
[[rule]]
name = "centered-dots-within-small-notations"
pattern = "[,][\\s&]*dots\\.c"
enforce = true
comment = "Please use dots within ,"