Skip to content

Commit 7bb7ab5

Browse files
authored
chore: add cSpell to check spelling issues (#209)
1 parent 26dc402 commit 7bb7ab5

File tree

6 files changed

+1702
-59
lines changed

6 files changed

+1702
-59
lines changed

.cspell.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"esbuild",
6+
"csso",
7+
"cssnano",
8+
"Stringifier",
9+
"stringifier",
10+
"KAAK",
11+
"UAAU",
12+
"OAAO",
13+
"colormin",
14+
"sugarss",
15+
"lightningcss",
16+
"minifiers",
17+
"pathinfo",
18+
"memfs",
19+
"colortable",
20+
"fullhash",
21+
"chunkhash",
22+
"OAAOA",
23+
"SAAUE",
24+
"IAAM",
25+
"IAAI",
26+
"IAAID",
27+
"OAAOC",
28+
"SAAUA",
29+
"CAAC",
30+
"minifier",
31+
"sourcemaps",
32+
"processoptions",
33+
"nosources",
34+
"pathinfo",
35+
"commitlint",
36+
"memfs",
37+
"colortable"
38+
],
39+
40+
"ignorePaths": [
41+
"CHANGELOG.md",
42+
"package.json",
43+
"dist/**",
44+
"**/__snapshots__/**",
45+
"package-lock.json",
46+
"*.pack"
47+
]
48+
}

lint-staged.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
2-
"*": ["prettier --write --ignore-unknown"],
2+
"*": ["prettier --write --ignore-unknown", "cspell"],
33
"*.js": ["eslint --cache --fix"],
44
};

0 commit comments

Comments
 (0)