-
Notifications
You must be signed in to change notification settings - Fork 2
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 #6 from hermanho/dev
1.1.0
- Loading branch information
Showing
14 changed files
with
652 additions
and
464 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,35 @@ | ||
name: Lint | ||
|
||
on: | ||
# Trigger the workflow on push or pull request, | ||
# but only for the main branch | ||
push: | ||
branches: | ||
- main | ||
# Replace pull_request with pull_request_target if you | ||
# plan to use this action with forks, see the Limitations section | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
# ESLint and Prettier must be in `package.json` | ||
- name: Install Node.js dependencies | ||
run: npm ci | ||
|
||
- uses: sibiraj-s/action-eslint@v3 | ||
with: | ||
annotations: true |
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,4 +1,10 @@ | ||
# MMM-OneDrive Change Log | ||
|
||
**`[1.1.0] - 2024/08/15`** | ||
- Fixed: albumn info did not show when startup caching | ||
- Fixed: depedencies packages update | ||
- Added: Allow regular expression ([RE2 engine](https://github.com/google/re2)) in album names | ||
- Changed: Update README.md and INSTALL.md | ||
|
||
**`[1.0.0] - 2023/07/17`** | ||
First version |
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,53 @@ | ||
import jsdoc from "eslint-plugin-jsdoc"; | ||
import globals from "globals"; | ||
import js from "@eslint/js"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
jsdoc.configs['flat/recommended'], | ||
jsdoc.configs['flat/recommended-typescript-flavor'], | ||
{ | ||
plugins: { | ||
jsdoc, | ||
}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.browser, | ||
...globals.node, | ||
Log: true, | ||
MM: true, | ||
Module: true, | ||
moment: true, | ||
}, | ||
|
||
ecmaVersion: 13, | ||
sourceType: "module", | ||
|
||
parserOptions: { | ||
ecmaFeatures: { | ||
globalReturn: true, | ||
}, | ||
}, | ||
}, | ||
|
||
rules: { | ||
"comma-dangle": ["error", { | ||
arrays: "always-multiline", | ||
objects: "always-multiline", | ||
imports: "always-multiline", | ||
exports: "always-multiline", | ||
functions: "only-multiline", | ||
}], | ||
|
||
eqeqeq: "error", | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": "off", | ||
"no-useless-return": "error", | ||
"no-var": "error", | ||
"jsdoc/require-returns": "off", | ||
"jsdoc/require-param-description": "off", | ||
semi: "error", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.