Skip to content

Commit

Permalink
Use cSpell
Browse files Browse the repository at this point in the history
  • Loading branch information
riscait committed Nov 25, 2023
1 parent 1236f1d commit 544cda4
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .cspell/handbook-words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Handbook Specific Words
Docsy
pageinfo
SSOT
Wantedly
9 changes: 9 additions & 0 deletions .cspell/organization-words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Organization Specific Words
Aimiee
altive
altiveinc
miyagawa
muramatsu
naipaka
riscait
ryunosuke
39 changes: 33 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,36 @@
{
"cSpell.words": [
"Altive",
"altiveinc",
"ananke",
"pageinfo",
"SSOT"
// スペルチェックから除外する単語をまとめたテキストファイルを指定する
"cSpell.customDictionaries": {
"handbook-words": {
"name": "handbook-words",
"path": "${workspaceRoot}/.cspell/handbook-words.txt",
"description": "Handbook Specific Words",
"addWords": true,
"scope": "workspace"
},
"organization-words": {
"name": "organization-words",
"path": "${workspaceRoot}/.cspell/organization-words.txt",
"description": "Organization Specific Words",
"addWords": true,
"scope": "workspace"
}
},
// スペルチェックを行わないファイルパスを指定する
"cSpell.ignorePaths": [
"dart_defines",
"firebase_options*.dart",
"google-services.json",
"node_modules",
"package-lock.json",
"vscode-extension",
"*.gen.dart",
"*.lock",
"*.xcconfig",
"**/fvm",
"**/.pub-cache",
".git/objects",
".vscode",
".vscode-insiders",
]
}

0 comments on commit 544cda4

Please sign in to comment.