Skip to content

Commit 2628bfc

Browse files
committed
chore: bump eslint*
1 parent 271cbef commit 2628bfc

File tree

5 files changed

+1130
-777
lines changed

5 files changed

+1130
-777
lines changed

.eslintrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"extends": "plugin:bpmn-io/es6",
3-
"env": {
4-
"browser": true
5-
}
2+
"extends": "plugin:bpmn-io/browser"
63
}

karma.conf.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
/* eslint-env node */
2+
13
// configures browsers to run test against
24
// any of [ 'ChromeHeadless', 'Chrome', 'Firefox' ]
35
const browsers =
46
(process.env.TEST_BROWSERS || 'ChromeHeadless')
57
.replace(/^\s+|\s+$/, '')
6-
.split(/\s*,\s*/g)
8+
.split(/\s*,\s*/g);
79

810
const suite = 'test/suite.js';
911

lib/comments.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,5 +151,5 @@ function getOverlayHtml(translate) {
151151
`<textarea tabindex="1" placeholder="${translate('Add a comment')}"></textarea>` +
152152
'</div>' +
153153
'</div>' +
154-
'</div>'
155-
};
154+
'</div>';
155+
}

0 commit comments

Comments
 (0)