github-pages-deploy-action/node_modules/eslint-plugin-react/lib/rules/no-did-mount-set-state.js
2020-03-06 22:45:40 -05:00

11 lines
260 B
JavaScript

/**
* @fileoverview Prevent usage of setState in componentDidMount
* @author Yannick Croissant
*/
'use strict';
const makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');
module.exports = makeNoMethodSetStateRule('componentDidMount');