Public commit

This commit is contained in:
Alex
2023-08-03 20:06:58 -04:00
commit d96c6c7caf
333 changed files with 44633 additions and 0 deletions

11
.eslintrc.js Normal file
View File

@ -0,0 +1,11 @@
const { extendConfig } = require("@aet/eslint-rules")
module.exports = extendConfig({
plugins: ["react", "react-hooks"],
rules: {
"@typescript-eslint/no-misused-promises": ["error", { checksVoidReturn: false }],
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
},
})