Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickcr committed Apr 23, 2017
1 parent b5856ca commit 21ed801
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions tests/lib/rules/jsx-wrap-multilines.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,17 @@ var ASSIGNMENT_NO_PAREN = `

var ARROW_SINGLE_LINE = 'var hello = () => <p>Hello</p>;';

var ARROW_PAREN = '\
var hello = () => (<div>\n\
<p>Hello</p>\n\
</div>);';
var ARROW_PAREN = `
var hello = () => (<div>
<p>Hello</p>
</div>);
`;

var ARROW_NO_PAREN = '\
var hello = () => <div>\n\
<p>Hello</p>\n\
</div>;';
var ARROW_NO_PAREN = `
var hello = () => <div>
<p>Hello</p>
</div>;
`;

// ------------------------------------------------------------------------------
// Tests
Expand Down

0 comments on commit 21ed801

Please sign in to comment.