Skip to content

Commit a812df1

Browse files
committed
cfg: spell check
1 parent 27b80c7 commit a812df1

File tree

6 files changed

+766
-6
lines changed

6 files changed

+766
-6
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ logs
2222
.env
2323
.env.*
2424
!.env.example
25+
26+
.cspellcache

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,7 @@
6666
"gql",
6767
"graphql"
6868
],
69+
"cSpell.words": [
70+
"vuejs"
71+
],
6972
}

cspell.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
3+
"version": "0.2",
4+
"words": [
5+
"corepack",
6+
"intlify",
7+
"nuxt",
8+
"nuxtjs",
9+
"textlint",
10+
"pinia",
11+
"vuejs",
12+
"vuelidate",
13+
"vuex",
14+
],
15+
"dictionaries": [
16+
"softwareTerms",
17+
"misc",
18+
"companies",
19+
"typescript",
20+
"node",
21+
"html",
22+
"css",
23+
"fonts",
24+
"filetypes",
25+
"npm",
26+
],
27+
"ignorePaths": [
28+
"_legacy",
29+
"pnpm-lock.yaml",
30+
]
31+
}

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nuxt-app",
2+
"name": "vuejs-jp.org",
33
"private": true,
44
"type": "module",
55
"scripts": {
@@ -9,6 +9,7 @@
99
"preview": "nuxt preview",
1010
"lint": "eslint .",
1111
"lint:fix": "eslint . --fix",
12+
"check:spell": "cspell lint \"**\" --no-progress --show-suggestions --show-context --cache",
1213
"postinstall": "nuxt prepare"
1314
},
1415
"dependencies": {
@@ -17,7 +18,10 @@
1718
"vue": "latest"
1819
},
1920
"devDependencies": {
21+
"@cspell/cspell-types": "^8.13.2",
22+
"cspell": "^8.13.2",
23+
"cspell-dict-de-de": "^1.2.3",
2024
"eslint-plugin-vuejs-accessibility": "^2.4.1"
2125
},
2226
"packageManager": "[email protected]"
23-
}
27+
}

0 commit comments

Comments
 (0)