From dc0be6681da2c0b7aadced4ab633dd5ea4e366fc Mon Sep 17 00:00:00 2001 From: claustra01 Date: Fri, 9 Aug 2024 23:24:17 +0900 Subject: [PATCH] deps: install cspell --- cspell.json | 3 +++ package.json | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 cspell.json diff --git a/cspell.json b/cspell.json new file mode 100644 index 0000000..9afcbc9 --- /dev/null +++ b/cspell.json @@ -0,0 +1,3 @@ +{ + "ignorePaths": ["node_modules/**", "*.svg"] +} \ No newline at end of file diff --git a/package.json b/package.json index 533a3f4..052b607 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", "check": "biome check ./src --write", - "check:ci": "biome check ./src" + "check:ci": "biome check ./src", + "spell": "cspell ./src" }, "dependencies": { "react": "^18.3.1", @@ -22,6 +23,7 @@ "@typescript-eslint/eslint-plugin": "^7.15.0", "@typescript-eslint/parser": "^7.15.0", "@vitejs/plugin-react-swc": "^3.5.0", + "cspell": "8.13.2", "eslint": "^8.57.0", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-react-refresh": "^0.4.7",