You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 regels
261 B

  1. /**
  2. * @fileoverview Prevent usage of setState in componentDidUpdate
  3. * @author Yannick Croissant
  4. */
  5. 'use strict';
  6. const makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');
  7. module.exports = makeNoMethodSetStateRule('componentDidUpdate');