-
Notifications
You must be signed in to change notification settings - Fork 9
chore: CSpell の設定強化 #457
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: CSpell の設定強化 #457
Changes from all commits
e66ec35
7900624
c9abce7
549861f
3d7506a
7a5ef3a
371222c
6734f79
12d1229
adf71db
84575b2
0ac8925
a9f3efc
5566f49
2429b5f
9dedc0e
34883f1
c7858e4
d9c32ac
5e6a5fc
42999cc
e0432d2
20c54c7
4528e04
25f5db5
4af45a0
e8474cb
5743576
d750d99
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| firebaserc | ||
| gifs | ||
| Angelov |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| toplevel |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| andstor | ||
| DavidAnson | ||
| dcarbone | ||
| dorny | ||
| ghaction | ||
| hkusu | ||
| mikefarah | ||
| nofilter | ||
| reviewdog | ||
| srvaroa | ||
| startswith | ||
| webframeworks |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| xcassets | ||
| xcworkspace |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| designsystem | ||
| yumemi |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,77 @@ | ||
| { | ||
| "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | ||
| "version": "0.2", | ||
| "language": [ | ||
| "en", | ||
| "ja" | ||
| "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)\\([^)]*\\)" | ||
|
Comment on lines
+17
to
+18
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ], | ||
| "ignorePaths": [ | ||
| "cspell.jsonc", | ||
| // IDE関連 | ||
| ".idea", | ||
| ".vscode", | ||
| // 自動生成ファイル | ||
| "*.*.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", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "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, | ||
| } | ||
| ], | ||
| "dictionaries": [ | ||
| "docs-term", | ||
| "flutter-term", | ||
| "git-term", | ||
| "github-action-term", | ||
| "ios-term", | ||
| "project-term" | ||
| ], | ||
| "import": [ | ||
| "@cspell/dict-dart/cspell-ext.json", | ||
| "@cspell/dict-flutter/cspell-ext.json" | ||
| "@cspell/dict-flutter/cspell-ext.json", | ||
| "@cspell/dict-software-terms/cspell-ext.json" | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| export 'src/util/custom_app_lifecyle_listerner.dart'; | ||
| export 'src/util/custom_app_lifecycle_listener.dart'; | ||
| export 'src/util/logger.dart'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dart,flutter辞書はdart言語扱いのファイル(*.dart)にしか適用されないので上書きします