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

      pFad - Phonifier reborn

      Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

      Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


      Alternative Proxies:

      Alternative Proxy

      pFad Proxy

      pFad v3 Proxy

      pFad v4 Proxy