send all info needed to create a Trustroots event

This commit is contained in:
2024-09-25 09:01:49 -06:00
parent 25d5e13029
commit d492ea9eeb
8 changed files with 201 additions and 20 deletions

View File

@@ -14,8 +14,18 @@ module.exports = {
// ecmaVersion: 2020,
// },
rules: {
"max-len": [
"warn",
{
code: 100,
ignoreComments: true,
ignoreTemplateLiterals: true,
ignoreUrls: true,
},
],
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"prettier/prettier": ["warn", { printWidth: 100 }],
"@typescript-eslint/no-unnecessary-type-constraint": "off",
},
};