Skip to content

Commit

Permalink
chore: document aspects of eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Oct 15, 2024
1 parent 5144004 commit e5109ed
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,26 @@ const files = {
};

export default [

// build
...bpmnIoPlugin.configs.node.map(config => {

return {
...config,
files: files.build
};
}),

// lib
...bpmnIoPlugin.configs.browser.map(config => {

return {
...config,
ignores: files.build
};
}),

// test
...bpmnIoPlugin.configs.mocha.map(config => {

return {
Expand Down

0 comments on commit e5109ed

Please sign in to comment.