diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..004e3e6 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,15 @@ +module.exports = [ + { + ignores: [ + "node_modules/**", + "**/*.pyc", + "**/__pycache__/**", + "ocb/**", + "setup/**", + ".git/**", + "dist/**", + "build/**", + ], + rules: {}, + }, +];