forked from Cap-go/capgo.app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.typos.toml
More file actions
67 lines (58 loc) · 1.22 KB
/
Copy path.typos.toml
File metadata and controls
67 lines (58 loc) · 1.22 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
# 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]+",
]
[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/schemas/prod.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"
# Add more project-specific terms as needed