initial commit

This commit is contained in:
2024-06-09 14:52:51 +02:00
parent a71467fec5
commit c1b817a128
21 changed files with 8371 additions and 51 deletions

View File

@@ -71,6 +71,17 @@ module.exports = {
"plugin:import/recommended",
"plugin:import/typescript",
],
rules:{
"@typescript-eslint/ban-ts-comment": [
"error",
{
"ts-expect-error":false,
"ts-ignore": "allow-with-description",
"ts-nocheck": "allow-with-description",
"ts-check": "allow-with-description"
}
],
}
},
// Node
@@ -80,5 +91,6 @@ module.exports = {
node: true,
},
},
],
};