fix problems reported by eslint

This commit is contained in:
Tilman Kranz 2024-11-10 15:08:12 +01:00 committed by Tilman Kranz
parent 8e6b09583d
commit 36773fe342
2 changed files with 35 additions and 21 deletions

10
eslint.config.js Normal file
View file

@ -0,0 +1,10 @@
// eslint.config.js
export default [
{
rules: {
semi: "error",
"prefer-const": "error"
}
}
];