-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcspell.jsonc
More file actions
84 lines (84 loc) · 2.09 KB
/
cspell.jsonc
File metadata and controls
84 lines (84 loc) · 2.09 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
79
80
81
82
83
84
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en,ja",
"useGitignore": true,
"enableGlobDot": true,
"files": [
"**/*.{md,yaml,yml,dart}"
],
"overrides": [
{
"filename": "**/*.{md,yaml,yml,dart}",
"dictionaries": ["dart", "flutter"]
}
],
"ignoreRegExpList": [
// https://github.com/dart-lang/sdk/blob/main/pkg/analyzer/lib/src/dart/error/todo_codes.dart
"(TODO|FIXME|HACK|UNDONE)\\([^)]*\\)"
],
"ignorePaths": [
// 自動生成ファイル
"*.*.dart",
// ラベル定義(カラーコードで警告が出るため)
".github/labels.yml"
],
"dictionaryDefinitions": [
{
"name": "docs-term",
"description": "Docs related terms",
"path": "./.cspell/docs-term.txt",
"addWords": true
},
{
"name": "flutter-term",
"description": "Flutter related terms",
"path": "./.cspell/flutter-term.txt",
"addWords": true
},
{
"name": "git-term",
"description": "Git related terms",
"path": "./.cspell/git-term.txt",
"addWords": true
},
{
"name": "github-action-term",
"description": "GitHub Actions related terms",
"path": "./.cspell/github-action-term.txt",
"addWords": true
},
{
"name": "ios-term",
"description": "iOS related terms",
"path": "./.cspell/ios-term.txt",
"addWords": true
},
{
"name": "project-term",
"description": "Project related terms",
"path": "./.cspell/project-term.txt",
"addWords": true
},
{
"name": "widgetbook-term",
"description": "Widgetbook related terms",
"path": "./.cspell/widgetbook-term.txt",
"addWords": true
}
],
"dictionaries": [
"docs-term",
"flutter-term",
"git-term",
"github-action-term",
"ios-term",
"project-term",
"widgetbook-term"
],
"import": [
"@cspell/dict-dart/cspell-ext.json",
"@cspell/dict-flutter/cspell-ext.json",
"@cspell/dict-software-terms/cspell-ext.json"
]
}