-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcspell.json
More file actions
35 lines (35 loc) · 893 Bytes
/
cspell.json
File metadata and controls
35 lines (35 loc) · 893 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
35
{
"version": "0.2",
"language": "en",
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./cspell-dictionary.txt",
"addWords": true
}
],
"dictionaries": ["project-words"],
"ignorePaths": [
"node_modules",
"**/node_modules",
"**/*.g.dart",
"**/coverage",
"**/.vscode-test",
"**/build",
"**/*.lock",
"**/pubspec.lock",
"**/package-lock.json",
"website/src/api/**",
"website/_site/api/**",
"**/.dart_tool",
"packages/reflux/test/selector_memoization_test.dart",
"packages/reflux/test/store_edge_cases_test.dart",
"packages/reflux/test/store_test.dart",
"packages/dart_node_react/test/svg_elements_test.dart",
"packages/dart_node_react_native/test/testing_library_test.dart"
],
"files": ["**/*.md", "**/*.dart", "**/*.ts"],
"words": [],
"flagWords": [],
"import": []
}