Skip to content

Commit

Permalink
Fix util filename in require
Browse files Browse the repository at this point in the history
  • Loading branch information
William Holloway committed Apr 6, 2017
1 parent 58519ae commit 4405523
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/rules/no-did-mount-set-state.js
Expand Up @@ -4,6 +4,6 @@
*/
'use strict';

var makeNoMethodSetStateRule = require('../util/makeNoSetStateRule');
var makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');

module.exports = makeNoMethodSetStateRule('componentDidMount');
2 changes: 1 addition & 1 deletion lib/rules/no-did-update-set-state.js
Expand Up @@ -4,6 +4,6 @@
*/
'use strict';

var makeNoMethodSetStateRule = require('../util/makeNoSetStateRule');
var makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');

module.exports = makeNoMethodSetStateRule('componentDidUpdate');
2 changes: 1 addition & 1 deletion lib/rules/no-will-update-set-state.js
Expand Up @@ -4,6 +4,6 @@
*/
'use strict';

var makeNoMethodSetStateRule = require('../util/makeNoSetStateRule');
var makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');

module.exports = makeNoMethodSetStateRule('componentWillUpdate');

0 comments on commit 4405523

Please sign in to comment.