Skip to content

Commit

Permalink
fix(lint): disable newline-per-chained-call
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason committed Aug 20, 2017
1 parent ff5888f commit baf2196
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"browser": true
},
"rules": {
"newline-per-chained-call": 0,
"class-methods-use-this": 0,
"consistent-return": 0,
"complexity": [1, 10],
Expand Down
2 changes: 1 addition & 1 deletion test/specs/modules/Dropdown/Dropdown-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ describe('Dropdown', () => {

it('clears value of the searchQuery when selection is only option', () => {
const search = wrapperMount(
<Dropdown options={customOptions} selection search allowAdditions />
<Dropdown options={customOptions} selection search allowAdditions />,
)
.find('input.search')

Expand Down

0 comments on commit baf2196

Please sign in to comment.