Skip to content

Commit

Permalink
Pre ChatGPT
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthernMan54 committed Nov 21, 2024
1 parent 5ab598b commit f004f08
Show file tree
Hide file tree
Showing 24 changed files with 7,610 additions and 3,493 deletions.
24 changes: 0 additions & 24 deletions .eslintrc.js

This file was deleted.

11 changes: 0 additions & 11 deletions .nycrc.json

This file was deleted.

28 changes: 28 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginJest from "eslint-plugin-jest";

/** @type {import('eslint').Linter.Config[]} */
export default [
{
files: ["**/*.js"],
languageOptions: {
sourceType: "commonjs", // Change to "module" for ES6
globals: {
...globals.browser,
...globals.es2021,
...globals.jest, // Add Jest globals
},
},
},
pluginJs.configs.recommended,
{
plugins: {
jest: pluginJest,
},
rules: {
...pluginJest.configs.recommended.rules,
"no-unused-vars": "warn", // Change no-unused-vars to a warning
},
},
];
Empty file added homebridge_v1.3.10_amd64.deb
Empty file.
Loading

0 comments on commit f004f08

Please sign in to comment.