-
-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy path.typos.toml
More file actions
78 lines (69 loc) · 2.23 KB
/
Copy path.typos.toml
File metadata and controls
78 lines (69 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Typos configuration file
# https://github.com/crate-ci/typos
[default]
extend-ignore-re = [
# Ignore URLs
"https?://[^\\s]+",
# Ignore base64 encoded strings
"[A-Za-z0-9+/]{40,}={0,2}",
# Ignore hex strings
"0x[0-9a-fA-F]+",
# Preserve the existing files.ts no-DB-read warning wording.
"This had beed designed that way and access to file going to be delete is non imporant compared to availability of file download, so we are not doing any check in DB or R2 before serving the file, if file is missing in R2 it will be 404 and that is expected and we want to avoid any potential bottlenecks\\.",
"File access security is not a matter here and will NERVER BE\\.",
]
[files]
extend-exclude = [
# Build outputs and dependencies
"dist/",
"node_modules/",
"*.lock",
"bun.lockb",
# Generated files
"*.gen.ts",
"*.generated.ts",
"src/typed-router.d.ts",
"src/components.d.ts",
"supabase/tests/00-supabase_test_helpers.sql",
# Database and Supabase
"supabase/.branches/",
"supabase/.temp/",
"supabase/migrations/20260528113224_missing_indexs.sql",
"supabase/schemas/prod.sql",
# Keep this committed migration filename stable even though it contains
# "indexs"; the migration timestamp is already part of history.
"supabase/migrations/20260528113224_missing_indexs.sql",
# Assets and data files
"*.json",
"*.svg",
"*.ico",
"*.png",
"*.jpg",
"*.jpeg",
"*.gif",
"*.woff",
"*.woff2",
"*.ttf",
"*.eot",
"cli/test/data.ts",
# Mobile platforms
"ios/",
"android/",
# Cloudflare snippets and workers
"scripts/snippet/",
"cloudflare_workers/snippet/",
# Logs and temporary files
"*.log",
".DS_Store",
]
[default.extend-words]
# Add custom words that should be ignored
# Format: incorrectword = "correctword" or incorrectword = "incorrectword" to accept as-is
capgo = "capgo"
forgr = "forgr"
supabase = "supabase"
ALS = "ALS" # AsyncLocalStorage abbreviation (used in CLI perf-tracking spec)
UDID = "UDID" # Apple's "Unique Device IDentifier" — distinct from UUID, used in Developer Portal walkthroughs.
unparseable = "unparseable" # Valid English synonym of "unparsable".
CIPS = "CIPS" # real App Store Connect session role value (ASC key helper)
# Add more project-specific terms as needed