propType "model" is not required, but has no corresponding defaultProps declaration.
model: PropTypes.string,
A control must be associated with a text label.
<input className="form-control" onChange={this.onChange} value={value.text} />
Prefer named exports.
export default Captcha;
Definition for rule 'node/no-restricted-import' was not found.
import PropTypes from 'prop-types';
Prefer named exports.
export default connect()(FormGroup);
Definition for rule 'node/no-restricted-import' was not found.
import PropTypes from 'prop-types';
propType "value" is not required, but has no corresponding defaultProps declaration.
value: PropTypes.object,
Prop spreading is forbidden
component = shallow(<Captcha {...props} />);
Definition for rule 'node/no-restricted-import' was not found.
import React from 'react';
A control must be associated with a text label.
<input />
Prop spreading is forbidden
component = shallow(<MultiDate {...props} />);
Definition for rule 'node/no-restricted-import' was not found.
import React from 'react';
Prop spreading is forbidden
component = shallow(<RadioButtons {...props} />);
Export statements should appear at the end of the file
export const ResultsFiltersPanel = ({ open, filtersValues }) => {
Definition for rule 'node/no-restricted-import' was not found.
import React, { Component } from 'react';
Definition for rule 'node/no-restricted-import' was not found.
import React, { Component } from 'react';
Prefer named exports.
export default connect(mapStateToProps, mapDispatchToProps)(SemanticSearchResults);
Prop spreading is forbidden
const render = () => shallow(<SemanticSearchSidePanel {...getProps()} />);
Definition for rule 'node/no-restricted-import' was not found.
import Immutable from 'immutable';
Export statements should appear at the end of the file
export class StateSelectorBase extends Component {