forked from nativewind/nativewind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
34 lines (34 loc) · 664 Bytes
/
cspell.json
File metadata and controls
34 lines (34 loc) · 664 Bytes
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
{
"version": "0.2",
"language": "en",
"ignorePaths": [
"node_modules/*",
"website/node_modules/*",
"dist/*",
"types.d.ts",
"coverage/*",
"**.js",
"**.snap",
"**LICENSE",
"**/package.json",
"**/renovate.json",
"website/build/*",
"website/static/*",
"website/src/css/*"
],
"dictionaries": ["tailwind", "project", "react-native"],
"dictionaryDefinitions": [
{
"name": "tailwind",
"path": "./.cspell/tailwind.txt"
},
{
"name": "project",
"path": "./.cspell/project.txt"
},
{
"name": "react-native",
"path": "./.cspell/react-native.txt"
}
]
}