Save last pH/ORP to restore across restarts
All checks were successful
Node.js CI / build (18.x) (push) Successful in 21s
Node.js CI / build (20.x) (push) Successful in 6s
Node.js CI / build (22.x) (push) Successful in 6s

This commit is contained in:
2025-02-01 15:52:10 -06:00
parent b187da8feb
commit ff05fce350
3 changed files with 42 additions and 2 deletions

View File

@ -1,8 +1,16 @@
import eslint from "@eslint/js";
import globals from "globals";
export default [
eslint.configs.recommended,
{
ignores: ["eslint.config.mjs"],
},
{
languageOptions: {
globals: {
...globals.node,
},
},
},
];