Skip to content

Commit ab3ff44

Browse files
authored
chore: add cSpell to check spelling issues (#610)
1 parent 3177135 commit ab3ff44

File tree

4 files changed

+1677
-66
lines changed

4 files changed

+1677
-66
lines changed

.cspell.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"stringifier",
6+
"sugarss",
7+
"unresolve",
8+
"esparser",
9+
"memfs",
10+
"postcssrc",
11+
"XSSI",
12+
"klona",
13+
"hspace",
14+
"vspace",
15+
"commitlint"
16+
],
17+
18+
"ignorePaths": [
19+
"CHANGELOG.md",
20+
"package.json",
21+
"dist/**",
22+
"**/__snapshots__/**",
23+
"package-lock.json"
24+
]
25+
}

lint-staged.config.js

+1-1
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)