Skip to content

Commit

Permalink
chore: fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
jarekdanielak committed Oct 11, 2024
1 parent 86f85d7 commit 3b5bfac
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
14 changes: 12 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@ import bpmnIoPlugin from 'eslint-plugin-bpmn-io';

export default [
{
ignores: [ '**/public' ],
ignores: [ '**/public', '**/dist' ],
},
...bpmnIoPlugin.configs.browser,
...bpmnIoPlugin.configs.node,
...bpmnIoPlugin.configs.node.map(config => {
return {
...config,
files: [
'**/*.config.js',
'**/*.conf.js',
'**/server.js',
'**/test/**/*.js',
]
};
}),
...bpmnIoPlugin.configs.mocha.map(config => {
return {
...config,
Expand Down
2 changes: 0 additions & 2 deletions i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
"devDependencies": {
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.0",
"npm-run-all2": "^6.2.2",
"raw-loader": "^4.0.0",
"style-loader": "^4.0.0",
Expand Down
2 changes: 0 additions & 2 deletions modeler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
"devDependencies": {
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.0",
"npm-run-all2": "^6.2.2",
"raw-loader": "^4.0.0",
"style-loader": "^4.0.0",
Expand Down

0 comments on commit 3b5bfac

Please sign in to comment.