Initial MVP test

This commit is contained in:
2024-10-04 18:41:01 -04:00
commit 28391f5b18
5 changed files with 1577 additions and 0 deletions

19
eslint.config.mjs Normal file
View File

@@ -0,0 +1,19 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import stylistic from '@stylistic/eslint-plugin';
export default [
{
languageOptions: {
globals: globals.node
},
plugins: {
'@stylistic': stylistic
},
rules : {
'@stylistic/indent': ['error', 2],
'no-useless-escape' : 'off'
}
},
pluginJs.configs.recommended,
];