File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,25 @@ check-filename = false
1414check-file = true
1515unicode =true
1616locale = " en"
17- extend-ignore-re = []
17+ extend-ignore-re = [
18+ ' \*\*[a-zA-Z\s]+\*\*\S*' , # Excludes "**C**ontrol" syntax
19+ ' (?:[a-fA-F0-9]{2}:){15}[a-fA-F0-9]{2}\b' , # ipv6 format
20+ ' \b(?:[a-zA-Z][a-zA-Z-]*: )?[a-fA-F0-9][a-fA-F0-9-]{7,}\b' , # matches hex IDs
21+ ' \b[0-9a-fA-F]{8,}\b' , # excludes hashes and other random strings
22+ ' \b[A-Z][A-Z0-9]*\b' , # excludes full caps words
23+ # '```.*$[\s\S]*```', excludes code blocks
24+ ' [a-zA-Z]+([A-Z][a-z]+)+' # excludes Camel case and other funny up/down cases
25+ ]
1826extend-ignore-identifiers-re = []
1927extend-ignore-words-re = []
2028
29+ [default .extend-words ]
30+ pn = " pn"
31+ mosquitto = " mosquitto"
32+ Aer = " Aer"
33+ aer = " aer"
34+ AER = " AER"
35+ ND = " ND"
36+ thi = " thi"
37+ fo = " fo"
38+ vertx = " vertx"
You can’t perform that action at this time.
0 commit comments