Skip to content

Commit ffab8c1

Browse files
committed
Fix wrap-multilines rule
Wrap multilines was broken after switching to new eslint rule format.
1 parent 1a1dcdb commit ffab8c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/wrap-multilines.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939
},
4040

4141
create: function(context) {
42-
return util._extend(jsxWrapMultilines(context), {
42+
return util._extend(jsxWrapMultilines.create(context), {
4343
Program: function() {
4444
if (isWarnedForDeprecation || /\=-(f|-format)=/.test(process.argv.join('='))) {
4545
return;

0 commit comments

Comments
 (0)