Skip to content

Commit

Permalink
chore: add cSpell to check spelling issues (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
ersachin3112 committed Nov 20, 2022
1 parent a41436e commit 75a6d95
Show file tree
Hide file tree
Showing 4 changed files with 1,712 additions and 69 deletions.
46 changes: 46 additions & 0 deletions .cspell.json
@@ -0,0 +1,46 @@
{
"version": "0.2",
"language": "en,en-gb",
"words": [
"publicpath",
"memfs",
"crossorigin",
"Crossorigin",
"camelcase",
"unreload",
"cnfg",
"sorhus",
"sindre",
"staticc",
"deepc",
"pathinfo",
"iife",
"IIFE",
"fullhref",
"Unexception",
"fullhash",
"truetype",
"entrypoints",
"plusplus",
"hotreloading",
"chunkhash",
"concat",
"nosources",
"hspace",
"vspace",
"commitlint",
"unreload",
"cnfg"
],

"ignorePaths": [
"CHANGELOG.md",
"package.json",
"dist/**",
"**/__snapshots__/**",
"package-lock.json",
"/test/js",
"/test/outputs",
"/test/manual/dist"
]
}
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,ts}": ["eslint --cache --fix"],
};

0 comments on commit 75a6d95

Please sign in to comment.