Skip to content

Commit d7256a0

Browse files
Add spell checker
1 parent 32d2d93 commit d7256a0

File tree

4 files changed

+101
-5
lines changed

4 files changed

+101
-5
lines changed

.github/CONTRIBUTING.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
Thank you for contributing.
2-
We're trying to keep the module up to date and we're adding new features everytime.
1+
# Contributing
2+
3+
Thank you for contributing!
4+
5+
We're trying to keep the module up to date and we're adding new features every time.
36
Your contribution help us so much in a lot of ways.
47

5-
We ask you to keep contributing, and feel free to open as many issues and PR as you need.
8+
We ask you to keep contributing, and feel free to open as many issues and PR as you need.
9+
10+
## Developer commands
11+
12+
- `npm run test` - Run spelling check.

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6-
and this project adheres to [Semantic Versioning](http://semver.org/).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/).
7+
8+
## [2.5.0] - Unreleased (`develop` branch)
9+
10+
### Added
11+
12+
- Added a spell checker and fixed problems that were found.
713

814
## [2.4.0] - 2024-10-08
915

cspell.config.json

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"version": "0.2",
3+
"language": "en",
4+
"words": [
5+
"apikey",
6+
"articlelessdetails",
7+
"articlemoredetails",
8+
"articlenext",
9+
"articleprevious",
10+
"articlescrollup",
11+
"articletogglefull",
12+
"Ausschalten",
13+
"Bethge",
14+
"bokmål",
15+
"cambio",
16+
"chlog",
17+
"defaultmodules",
18+
"Energieoptionen",
19+
"extdocs",
20+
"ezeholz",
21+
"Ezequiel",
22+
"Flickr",
23+
"FULLSCREEN",
24+
"HIDEALERT",
25+
"HIDEALL",
26+
"jopyth",
27+
"juzim",
28+
"kapsolas",
29+
"Keyport",
30+
"khassel",
31+
"Kristjan",
32+
"kvpairs",
33+
"listname",
34+
"LOCKSTRING",
35+
"lockstrings",
36+
"longname",
37+
"MODULEAPI",
38+
"MONITOROFF",
39+
"MONITORON",
40+
"MONITORSTATUS",
41+
"MONITORTIMED",
42+
"MONITORTOGGLE",
43+
"mymodulename",
44+
"mypayload",
45+
"Mysh",
46+
"navicon",
47+
"newsfeed",
48+
"newsitems",
49+
"Norsk",
50+
"plusplus",
51+
"REFRESHMM",
52+
"remotecontrol",
53+
"RESTARTMM",
54+
"revparse",
55+
"SENDALERT",
56+
"shbatm",
57+
"showalert",
58+
"SHOWALL",
59+
"somthingelse",
60+
"TOGGLEFULLSCREEN",
61+
"UPDATEMM",
62+
"userpresence",
63+
"vcgencmd",
64+
"Wooo",
65+
"xsmall",
66+
"YOURAPIKEY"
67+
],
68+
"ignorePaths": [
69+
"modules.json",
70+
"node_modules/**",
71+
"translations/**",
72+
"*.min.js"
73+
],
74+
"dictionaries": [
75+
"node"
76+
]
77+
}

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,11 @@
2626
"node-fetch": "^2.7.0",
2727
"simple-git": "latest",
2828
"uuid": "^3.3.2"
29+
},
30+
"devDependencies": {
31+
"cspell": "^8.15.7"
32+
},
33+
"scripts": {
34+
"test": "cspell ."
2935
}
3036
}

0 commit comments

Comments
 (0)