better organization, add in eslint as well as package and other helper bookmarklets found on confluence to have here if needed as a reference

This commit is contained in:
Greg Jacobs
2024-06-01 18:12:05 -04:00
parent 21397c5827
commit 1e4c307f97
14 changed files with 132 additions and 13 deletions

8
eslint.config.mjs Normal file
View File

@@ -0,0 +1,8 @@
import globals from "globals";
import pluginJs from "@eslint/js";
export default [
{languageOptions: { globals: {...globals.browser, ...globals.node} }},
pluginJs.configs.recommended,
];