UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

16 lines (12 loc) 441 B
/** * @fileoverview Prevent usage of setState in componentWillUpdate * @author Yannick Croissant */ 'use strict'; const makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule'); const testReactVersion = require('../util/version').testReactVersion; /** @type {import('eslint').Rule.RuleModule} */ module.exports = makeNoMethodSetStateRule( 'componentWillUpdate', (context) => testReactVersion(context, '>= 16.3.0') );