This commit is contained in:
2025-04-12 12:38:00 +08:00
parent 5341dfcd1a
commit 52bfd05b80
47 changed files with 4730 additions and 2 deletions

8
.eslintrc.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
extends: ["plugin:@einride/default"],
rules: {
"jest/no-deprecated-functions": "off", // we're not using Jest
"prettier/prettier": "off", // we're not concerned with code style
"@typescript-eslint/ban-ts-comment": "off", // we need ts comment in generated files to disable type checking of files for consumers
},
};