[CHORE] Add ESLint configuration file

- Create eslint.config.js with basic configuration
- Ignore common directories (node_modules, ocb, setup, etc)
- Fixes ESLint pre-commit hook failure due to missing config
This commit is contained in:
snt 2026-02-17 01:29:17 +01:00
parent 40ce973bd6
commit dc44ace78f

15
eslint.config.js Normal file
View file

@ -0,0 +1,15 @@
module.exports = [
{
ignores: [
"node_modules/**",
"**/*.pyc",
"**/__pycache__/**",
"ocb/**",
"setup/**",
".git/**",
"dist/**",
"build/**",
],
rules: {},
},
];