Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 51c6547

Browse files
authored
chore: add cSpell to check spelling issues (#99)
1 parent cb9693e commit 51c6547

File tree

4 files changed

+1716
-72
lines changed

4 files changed

+1716
-72
lines changed

.cspell.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"commitlint",
6+
"dlopen",
7+
"RTLD",
8+
"Koppers",
9+
"sokra",
10+
"napi",
11+
"NAPI",
12+
"memfs"
13+
],
14+
15+
"ignorePaths": [
16+
"CHANGELOG.md",
17+
"package.json",
18+
"dist/**",
19+
"**/__snapshots__/**",
20+
"package-lock.json"
21+
]
22+
}

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-
"*.js": ["prettier --write", "eslint --fix"],
2+
"*.js": ["prettier --write", "eslint --fix", "cspell"],
33
"*.{json,md,yml,css,ts}": ["prettier --write"],
44
};

0 commit comments

Comments
 (0)