-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #311 from Jopyth/develop
Version 2.5.0
- Loading branch information
Showing
18 changed files
with
4,446 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
Thank you for contributing. | ||
We're trying to keep the module up to date and we're adding new features everytime. | ||
# Contributing | ||
|
||
Thank you for contributing! | ||
|
||
We're trying to keep the module up to date and we're adding new features every time. | ||
Your contribution help us so much in a lot of ways. | ||
|
||
We ask you to keep contributing, and feel free to open as many issues and PR as you need. | ||
We ask you to keep contributing, and feel free to open as many issues and PR as you need. | ||
|
||
## Developer commands | ||
|
||
- `npm run lint` - Run linting checks. | ||
- `npm run lint:fix` - Fix linting issues. | ||
- `npm run test` - Run linting and formatter checks + Run spelling check. | ||
- `npm run test:spelling` - Run spelling check. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Automated Tests | ||
on: | ||
push: | ||
branches: [master, develop] | ||
pull_request: | ||
branches: [master, develop] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
run-lint: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- run: echo "Starting automated tests for ${{ github.repository }} on ${{ github.ref }}" | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
cache: npm | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Check spelling | ||
run: npm run test:spelling | ||
- name: Check linting | ||
run: npm run lint | ||
- run: echo "Test job status is ${{ job.status }}." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,4 @@ node_modules | |
# Default settings | ||
settings.json | ||
|
||
# Package Lock File | ||
package-lock.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"apikey", | ||
"articlelessdetails", | ||
"articlemoredetails", | ||
"articlenext", | ||
"articleprevious", | ||
"articlescrollup", | ||
"articletogglefull", | ||
"Ausschalten", | ||
"Bethge", | ||
"bokmål", | ||
"cambio", | ||
"chlog", | ||
"defaultmodules", | ||
"Energieoptionen", | ||
"extdocs", | ||
"ezeholz", | ||
"Ezequiel", | ||
"Flickr", | ||
"FULLSCREEN", | ||
"HIDEALERT", | ||
"HIDEALL", | ||
"jopyth", | ||
"juzim", | ||
"kapsolas", | ||
"Keyport", | ||
"khassel", | ||
"Kristjan", | ||
"kvpairs", | ||
"listname", | ||
"LOCKSTRING", | ||
"lockstrings", | ||
"longname", | ||
"MODULEAPI", | ||
"MONITOROFF", | ||
"MONITORON", | ||
"MONITORSTATUS", | ||
"MONITORTIMED", | ||
"MONITORTOGGLE", | ||
"mymodulename", | ||
"mypayload", | ||
"Mysh", | ||
"navicon", | ||
"newsfeed", | ||
"newsitems", | ||
"Norsk", | ||
"plusplus", | ||
"REFRESHMM", | ||
"remotecontrol", | ||
"RESTARTMM", | ||
"revparse", | ||
"SENDALERT", | ||
"shbatm", | ||
"showalert", | ||
"SHOWALL", | ||
"somthingelse", | ||
"TOGGLEFULLSCREEN", | ||
"UPDATEMM", | ||
"userpresence", | ||
"vcgencmd", | ||
"Wooo", | ||
"xsmall", | ||
"YOURAPIKEY" | ||
], | ||
"ignorePaths": [ | ||
"modules.json", | ||
"node_modules/**", | ||
"translations/**", | ||
"*.min.js" | ||
], | ||
"dictionaries": [ | ||
"node" | ||
] | ||
} |
Oops, something went wrong.