Skip to content

Commit

Permalink
chore: correct lint config
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Nov 7, 2024
1 parent 1cb43ea commit c48646f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,26 @@ export default [
},

// build
...bpmnIoPlugin.configs.browser.map(config => {
...bpmnIoPlugin.configs.node.map(config => {
return {
...config,
ignores: files.build
files: files.build
};
}),

// lib + test
...bpmnIoPlugin.configs.node.map(config => {
...bpmnIoPlugin.configs.browser.map(config => {
return {
...config,
files: files.build
ignores: files.build
};
}),

// test
...bpmnIoPlugin.configs.mocha.map(config => {
return {
...config,
files: [
'**/test/**/*.js'
],
files: files.test,
ignores: files.build
};
}),
Expand Down

0 comments on commit c48646f

Please sign in to comment.