Generating template

This commit is contained in:
SeeTheRiver
2025-08-29 08:55:00 -04:00
parent 3e93ab2be2
commit 2f848014ed
14 changed files with 3210 additions and 138 deletions

25
eslint.config.mjs Normal file
View File

@@ -0,0 +1,25 @@
import globals from "globals";
export default [{
files: ["**/*.js"],
languageOptions: {
globals: {
...globals.commonjs,
...globals.node,
...globals.mocha,
},
ecmaVersion: 2022,
sourceType: "module",
},
rules: {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
},
}];