我正在为SwiftLint创建自定义规则,用于检查color
. 我需要这个不区分大小写。
我目前正在匹配 usingregex: "([C|c]olour)"
但我想使用不区分大小写的修饰符/i
。我尝试了以下规则,但它不起作用:
custom_rules:
color_us_english:
regex: "(colour)/i"
message: "Use US English spelling to match Apple's API."
severity: warning
你如何在 SwiftLint 中使用修饰符?