Skip to content

Commit da3fb62

Browse files
committedJun 27, 2018
Disable no-deprecated eslint rule
1 parent da65ef8 commit da3fb62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
}
1010
},
1111
"rules": {
12-
"no-invalid-this": 0
12+
"no-invalid-this": 0,
13+
"react/no-deprecated": 0
1314
}
1415
}

‎src/components/Carousel.js

-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ export default class Carousel extends Component {
188188
/**
189189
* Check if this.props.value changed after update
190190
* @param {object} prevProps
191-
* @param {object} prevState
192191
* @return {boolean} result
193192
*/
194193
checkIfValueChanged = prevProps => {

0 commit comments

Comments
 (0)
Please sign in to comment.