Skip to content

Commit 3be9e37

Browse files
authored
chore: add cSpell to check spelling issues (#472)
1 parent dcf1635 commit 3be9e37

6 files changed

Lines changed: 1709 additions & 61 deletions

File tree

.cspell.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"Krasnoyarov",
6+
"lastname",
7+
"firstname",
8+
"memfs",
9+
"ASCIIC",
10+
"xlink",
11+
"imagesrcset",
12+
"Requestable",
13+
"Itemprop",
14+
"itemprop",
15+
"layoutimage",
16+
"installurl",
17+
"embedurl",
18+
"duringmedia",
19+
"downloadurl",
20+
"contenturl",
21+
"thumbnailurl",
22+
"tileimage",
23+
"Rels",
24+
"precomposed",
25+
"cssnano",
26+
"requestify",
27+
"substeps",
28+
"srcset",
29+
"scrset",
30+
"plusplus",
31+
"webp",
32+
"Webp",
33+
"layoutimage",
34+
"msapplication",
35+
"hspace",
36+
"vspace",
37+
"jsbeautify",
38+
"Gitter",
39+
"commitlint"
40+
],
41+
42+
"ignorePaths": [
43+
"CHANGELOG.md",
44+
"package.json",
45+
"dist/**",
46+
"**/__snapshots__/**",
47+
"package-lock.json",
48+
"*.xml",
49+
"*.ogg",
50+
"*.html",
51+
"*.webp"
52+
]
53+
}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ your pull request should be accepted quickly.
3838
Some things that will increase the chance that your pull request is accepted:
3939

4040
- Write tests
41-
- Follow the existing Webpack coding style defined in the eslint jsbeutify and editor config rules.
41+
- Follow the existing Webpack coding style defined in the eslint jsbeautify and editor config rules.
4242
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)

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-
"*": ["prettier --write --ignore-unknown"],
2+
"*": ["prettier --write --ignore-unknown", "cspell"],
33
"*.js": ["eslint --cache --fix"],
44
};

0 commit comments

Comments
 (0)