go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/.github/actions/spelling/patterns.txt (about) 1 # See https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns 2 3 # acceptable duplicates 4 # ls directory listings 5 [-bcdlpsw](?:[-r][-w][-sx]){3}\s+\d+\s+(\S+)\s+\g{-1}\s+\d+\s+ 6 7 # Commit message -- Signed-off-by and friends 8 ^\s*(?:(?:Based-on-patch|Co-authored|Helped|Mentored|Reported|Reviewed|Signed-off)-by|Thanks-to): (?:[^<]*<[^>]*>|[^<]*)\s*$ 9 10 # Autogenerated revert commit message 11 ^This reverts commit [0-9a-f]{40}\.$ 12 13 # ignore long runs of a single character: 14 \b([A-Za-z])\g{-1}{3,}\b 15 16 # ignore funky space IDs that blow up spell checking 17 api\.mondoo\.app\/space.*\b 18 console\.mondoo\.com\/space.*\b 19 20 # azure subscription ID 21 [0-9A-Fa-f]{8}-([0-9A-Fa-f]{4}-){3}[0-9A-Fa-f]{12} 22 23 # azure subscriptions URL 24 \/subscriptions\/\S* 25 26 # docker container 27 \b[a-z,0-9]{12}\b 28 29 # URLs in markdown links / images 30 ]\(.*\) 31 32 # Azure Key Vault Vault. It feels wrong, but it's technically right 33 Key Vault Vault 34 35 # luna containers in scan output 36 \bluna/.*\b 37 38 # this comes up in permissions and is valid 39 \broot root\b 40 41 # AWS resources 42 (ami|subnet|vpc|sg)-[0-9a-fA-F]{17} 43 44 # http and https URLs 45 https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*) 46 47 # registry key paths 48 HKEY_[\w\\]* 49 50 # Container digests 51 \bsha256:\w* 52 53 # mime types 54 \bapplication\/\S* 55 56 # skip mql uids 57 uid:\s.*$ 58 59 # ARN values 60 \barn:\S* 61 62 # mac user dir path 63 \/Users\/\S* 64 65 # AWS Token, ID access key, etc 66 aws_session_token\s+\=(\s+)?.+ 67 aws_access_key_id\s+\=(\s+)?.+ 68 aws_secret_access_key\s+\=(\s+)?.+ 69