Skip to content

Latest commit

 

History

History
81 lines (59 loc) · 1.35 KB

require-optimization.md

File metadata and controls

81 lines (59 loc) · 1.35 KB

Enforce React components to have a shouldComponentUpdate method (react/require-optimization)

This rule prevents you from creating React components without declaring a shouldComponentUpdate method.

Rule Details

The following patterns are considered warnings:

class YourComponent extends React.Component {

}
createReactClass({
});

The following patterns are not considered warnings:

class YourComponent extends React.Component {
	shouldComponentUpdate () {
		return false;
	}
}
createReactClass({
	shouldComponentUpdate: function () {
		return false;
	}
});
createReactClass({
	mixins: [PureRenderMixin]
});
@reactMixin.decorate(PureRenderMixin)
createReactClass({

});

Rule Options

...
"react/require-optimization": [<enabled>, { allowDecorators: [<allowDecorator>] }]
...
  • enabled: for enabling the rule. 0=off, 1=warn, 2=error. Defaults to 0.
  • allowDecorators: optional array of decorators names to allow validation.

allowDecorators

Sets the allowed names of decorators. If the variable is present in the chain of decorators, it validates

The following patterns are not warnings:

// ['pureRender']
@pureRender
class Hello extends React.Component {}

Example

...
"react/require-optimization": [2, {allowDecorators: ['customDecorators']}]
...