Skip to content

Commit 091f1fc

Browse files
Minor changes (#322)
* Add missing possible value`true` to `welcome_message` option * Update code blocks - use 'js' for syntax highlighting - optimize indenting - remove modules array from module configs * Run prettier and handle cspell issues
1 parent 1d690d2 commit 091f1fc

20 files changed

+358
-331
lines changed

.github/workflows/autoupdate_develop.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
timeout-minutes: 5
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
17-
- name: Merge master back to develop
18-
run: |
19-
git config --local user.email "[email protected]"
20-
git config --local user.name "Github Actions"
21-
git fetch --unshallow
22-
git checkout develop
23-
git status
24-
git merge --no-ff --allow-unrelated-histories origin/master -m "Auto-merge master back to develop"
25-
git push
16+
- uses: actions/checkout@v4
17+
- name: Merge master back to develop
18+
run: |
19+
git config --local user.email "[email protected]"
20+
git config --local user.name "Github Actions"
21+
git fetch --unshallow
22+
git checkout develop
23+
git status
24+
git merge --no-ff --allow-unrelated-histories origin/master -m "Auto-merge master back to develop"
25+
git push

configuration/introduction.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ export MM_PORT=8081
103103
node --run start
104104
```
105105

106-
You can run `node --run config:check` on your 2nd configuration file by typing the
107-
export line in first, example:
106+
You can run `node --run config:check` on your 2nd configuration file by typing
107+
the export line in first, example:
108108

109109
```bash
110110
export MM_CONFIG_FILE=config/config2.js
@@ -129,7 +129,7 @@ Variables must be inserted as `${MY_VARIABLE}`, examples:
129129

130130
`config.js.template`:
131131

132-
```javascript
132+
```js
133133
let config = {
134134
address: "${MY_ADDRESS}",
135135
port: ${MY_PORT},
@@ -143,7 +143,7 @@ would become
143143

144144
`config.js`:
145145

146-
```javascript
146+
```js
147147
let config = {
148148
address: "localhost",
149149
port: 8080,
@@ -280,7 +280,7 @@ them from the config.js file.
280280
281281
`config.js.template`:
282282
283-
```javascript
283+
```js
284284
let config = {
285285
address: "0.0.0.0",
286286
port: 8080,

cspell.config.json

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,78 @@
44
"words": [
55
"anyfileorfolder",
66
"apikey",
7+
"Autorestart",
8+
"bouncyflip",
79
"clientonly",
10+
"crontype",
11+
"custommodules",
12+
"dateheaders",
13+
"datetype",
14+
"envcanada",
15+
"exploader",
16+
"feelslike",
17+
"Geburtstag",
18+
"ical",
819
"iconset",
920
"inclusivity",
1021
"infobars",
22+
"intpx",
1123
"LXDE",
1224
"lxpanel",
1325
"lxsession",
1426
"magicmirror",
1527
"MAPBOX",
1628
"meteo",
1729
"modulename",
30+
"myclass",
31+
"mycroft",
32+
"mymodule",
33+
"newpos",
1834
"newsfeed",
1935
"nohup",
36+
"oenstrom",
37+
"onecall",
38+
"openmeteo",
39+
"openweathermap",
2040
"päästä",
2141
"Päättyy",
2242
"pcmanfm",
43+
"pirateweather",
44+
"pmax",
45+
"pmean",
46+
"pmedian",
47+
"pmin",
48+
"prio",
49+
"RGBA",
2350
"sdetweil",
2451
"serveronly",
2552
"Slutar",
53+
"SMHI",
54+
"stationid",
2655
"STRAVA",
2756
"Subclassable",
2857
"subclassing",
2958
"Teeuw",
3059
"Termine",
60+
"timeformat",
61+
"trunc",
62+
"tympanus",
63+
"ukmetoffice",
64+
"ukmetofficedatahub",
65+
"UKMO",
66+
"updatenotification",
67+
"verjaardag",
68+
"Weatherbit",
69+
"Weatherflow",
70+
"weathergov",
3171
"weatherutils",
72+
"windspeed",
73+
"xlarge",
3274
"xscreensaver",
75+
"xsmall",
76+
"yearmatchgroup",
3377
"yourprovider"
3478
],
35-
"ignorePaths": [
36-
"node_modules/**"
37-
],
79+
"ignorePaths": ["node_modules/**"],
3880
"dictionaries": ["node"]
3981
}

0 commit comments

Comments
 (0)