Content-Length: 276515 | pFad | https://redirect.github.com/jsx-eslint/eslint-plugin-react/issues/1521

C2 static defaultProps breaks prefer-stateless-function · Issue #1521 · jsx-eslint/eslint-plugin-react · GitHub
Skip to content

static defaultProps breaks prefer-stateless-function #1521

@evandavis

Description

@evandavis

The following is not caught by prefer-stateless-function:

import React from 'react';
import PropTypes from 'prop_types';

export default class Thing extends React.Component {
  static defaultProps = {
     foo: ''
  };

  static propTypes = {
    foo: PropTypes.string
  };

  render() {
    return <div>{this.props.foo}</div>;
  }
}

However, by removing static defaultProps, the error is reported:

import React from 'react';
import PropTypes from 'prop_types';

export default class Thing extends React.Component {
  static propTypes = {
    foo: PropTypes.string
  };

  render() {
    return <div>{this.props.foo}</div>;
  }
}

This is happening in 7.4.0.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions









      ApplySandwichStrip

      pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


      --- a PPN by Garber Painting Akron. With Image Size Reduction included!

      Fetched URL: https://redirect.github.com/jsx-eslint/eslint-plugin-react/issues/1521

      Alternative Proxies:

      Alternative Proxy

      pFad Proxy

      pFad v3 Proxy

      pFad v4 Proxy