LADRSolutions/lint.toml
2025-07-13 22:39:02 +08:00

30 lines
842 B
TOML

[[rule]]
name = "trailing-whitespace"
pattern = "\\s+\\n$"
enforce = true
comment = "Found 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 ,"
[[rule]]
name = "formula-without-space-after-cjk-character"
pattern = "[^:,、。!?()【】—;“”‘’…\\s\\x20-\\x7E]\\$"
enforce = true
comment = "Missing space between CJK character and $"
[[rule]]
name = "cjk-character-without-space-after-formula"
pattern = "\\$[^:,、。!?()【】—;“”‘’…\\s\\x20-\\x7E]"
enforce = true
comment = "Missing space between $ and CJK character"