[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:
parent
40ce973bd6
commit
dc44ace78f
1 changed files with 15 additions and 0 deletions
15
eslint.config.js
Normal file
15
eslint.config.js
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
module.exports = [
|
||||||
|
{
|
||||||
|
ignores: [
|
||||||
|
"node_modules/**",
|
||||||
|
"**/*.pyc",
|
||||||
|
"**/__pycache__/**",
|
||||||
|
"ocb/**",
|
||||||
|
"setup/**",
|
||||||
|
".git/**",
|
||||||
|
"dist/**",
|
||||||
|
"build/**",
|
||||||
|
],
|
||||||
|
rules: {},
|
||||||
|
},
|
||||||
|
];
|
||||||
Loading…
Add table
Add a link
Reference in a new issue