Skip to content

Commit

Permalink
chore: add cSpell to check spelling issues (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
ersachin3112 committed Nov 20, 2022
1 parent 3177135 commit ab3ff44
Show file tree
Hide file tree
Showing 4 changed files with 1,677 additions and 66 deletions.
25 changes: 25 additions & 0 deletions .cspell.json
@@ -0,0 +1,25 @@
{
"version": "0.2",
"language": "en,en-gb",
"words": [
"stringifier",
"sugarss",
"unresolve",
"esparser",
"memfs",
"postcssrc",
"XSSI",
"klona",
"hspace",
"vspace",
"commitlint"
],

"ignorePaths": [
"CHANGELOG.md",
"package.json",
"dist/**",
"**/__snapshots__/**",
"package-lock.json"
]
}
2 changes: 1 addition & 1 deletion lint-staged.config.js
@@ -1,4 +1,4 @@
module.exports = {
"*": ["prettier --write --ignore-unknown"],
"*": ["prettier --write --ignore-unknown", "cspell"],
"*.js": ["eslint --cache --fix"],
};

0 comments on commit ab3ff44

Please sign in to comment.