Fixed eslint bug

This commit is contained in:
Daniel Hougaard
2024-01-16 17:15:35 +04:00
committed by Akhil Mohan
parent 606ed25104
commit 0be3ad9517
2 changed files with 2 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ module.exports = {
tsconfigRootDir: __dirname
},
rules: {
"@typescript-eslint/no-empty-function": "off",
"consistent-return": "off", // my style
"import/order": "off", // for simple-import-order
"import/prefer-default-export": "off", // why

View File

@@ -27,6 +27,6 @@
"@server/*": ["./src/server/*"]
}
},
"include": ["src/**/*", "scripts/**/*", "e2e-test/**/*"],
"include": ["src/**/*", "scripts/**/*", "e2e-test/**/*", ".eslintrc.js"],
"exclude": ["node_modules"]
}