Skip to content

Commit

Permalink
cfg: spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
ubugeeei committed Aug 10, 2024
1 parent 27b80c7 commit a812df1
Show file tree
Hide file tree
Showing 6 changed files with 766 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ logs
.env
.env.*
!.env.example

.cspellcache
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,7 @@
"gql",
"graphql"
],
"cSpell.words": [
"vuejs"
],
}
31 changes: 31 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"words": [
"corepack",
"intlify",
"nuxt",
"nuxtjs",
"textlint",
"pinia",
"vuejs",
"vuelidate",
"vuex",
],
"dictionaries": [
"softwareTerms",
"misc",
"companies",
"typescript",
"node",
"html",
"css",
"fonts",
"filetypes",
"npm",
],
"ignorePaths": [
"_legacy",
"pnpm-lock.yaml",
]
}
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nuxt-app",
"name": "vuejs-jp.org",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -9,6 +9,7 @@
"preview": "nuxt preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:spell": "cspell lint \"**\" --no-progress --show-suggestions --show-context --cache",
"postinstall": "nuxt prepare"
},
"dependencies": {
Expand All @@ -17,7 +18,10 @@
"vue": "latest"
},
"devDependencies": {
"@cspell/cspell-types": "^8.13.2",
"cspell": "^8.13.2",
"cspell-dict-de-de": "^1.2.3",
"eslint-plugin-vuejs-accessibility": "^2.4.1"
},
"packageManager": "[email protected]"
}
}
Loading

0 comments on commit a812df1

Please sign in to comment.