UNPKG

380 BJavaScriptView Raw
1/**
2 * @fileoverview Prevent usage of setState in componentWillUpdate
3 * @author Yannick Croissant
4 */
5
6'use strict';
7
8const makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');
9const versionUtil = require('../util/version');
10
11module.exports = makeNoMethodSetStateRule(
12 'componentWillUpdate',
13 (context) => versionUtil.testReactVersion(context, '16.3.0')
14);