Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthernMan54 committed Nov 21, 2024
1 parent 70c46ca commit 21053e3
Show file tree
Hide file tree
Showing 10 changed files with 694 additions and 701 deletions.
5 changes: 4 additions & 1 deletion eslint.config.mjs → eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginJest from "eslint-plugin-jest";
import globals from "globals";

/** @type {import('eslint').Linter.Config[]} */
export default [
Expand All @@ -25,4 +25,7 @@ export default [
"no-unused-vars": "warn", // Change no-unused-vars to a warning
},
},
{
ignores: ["test/**/*", "tools/*js", "src/lib/*"], // Modify the ignores property to exclude the specified files
}
];
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "node-red-contrib-homebridge-automation",
"version": "0.1.12",
"description": "NodeRED Automation for HomeBridge",
"type": "module",
"main": "src/HAP-NodeRed.js",
"scripts": {
"api": "documentation build HAP-NodeRed.js -f md --config docs/documentation.yml > docs/API.md",
Expand Down Expand Up @@ -82,4 +83,4 @@
"!src/test-utils"
]
}
}
}
Loading

0 comments on commit 21053e3

Please sign in to comment.