chore: add ESLint setup with config, ignore file, and lint script

This commit is contained in:
coaxial
2025-10-23 15:20:07 +02:00
committed by coaxial (aider)
parent f34f5298fc
commit 3375344fd1
3 changed files with 35 additions and 2 deletions

16
.eslintrc.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
env: {
es2021: true,
node: true,
jest: true
},
extends: "eslint:recommended",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module"
},
rules: {
// add custom rules or overrides here, e.g.:
// "no-console": "warn"
}
};