Skip to content

Commit

Permalink
chore: add cSpell to check spelling issues (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
ersachin3112 authored Nov 21, 2022
1 parent 516bf2e commit 444d866
Show file tree
Hide file tree
Showing 4 changed files with 1,689 additions and 77 deletions.
24 changes: 24 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "0.2",
"language": "en,en-gb",
"words": [
"commitlint",
"unuse",
"concat",
"getdom",
"Browserhacks",
"toogle",
"camelcase",
"EAAE",
"Unse",
"memfs"
],

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

0 comments on commit 444d866

Please sign in to comment.