From c241e69bd2852d83f6f66a937efe0466df07a1b4 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Tue, 15 Oct 2024 16:13:09 +0200 Subject: [PATCH] chore: document aspects of eslint config --- eslint.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 064dd9b..72694c7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -19,6 +19,8 @@ export default [ { 'ignores': files.ignored }, + + // build ...bpmnIoPlugin.configs.node.map(config => { return { @@ -26,6 +28,8 @@ export default [ files: files.build }; }), + + // lib ...bpmnIoPlugin.configs.recommended.map(config => { return { @@ -33,6 +37,8 @@ export default [ ignores: files.build }; }), + + // test ...bpmnIoPlugin.configs.mocha.map(config => { return { @@ -41,6 +47,7 @@ export default [ }; }), + // other // hook up babel parser { files: [ '**/*.js', '**/*.mjs' ],