Giter Site home page Giter Site logo

Comments (8)

yannickcr avatar yannickcr commented on May 12, 2024

Hi,

Can you be more specific about the rules that are ignored and your .eslintrc configuration ?

from eslint-plugin-react.

steida avatar steida commented on May 12, 2024

https://gist.github.com/steida/8882dc774ccf7b8ce611

I checked only prop-types and self-closing-comp. It worked well with createClass but not in pasted example.
Btw, you can check it on https://github.com/steida/este

from eslint-plugin-react.

yannickcr avatar yannickcr commented on May 12, 2024

We are using React.createClass in prop-types, display-name and no-multi-comp to detect React component and to apply the rules on the object.

Obviously we need to figure out a new way to detect React components when using ES6 classes.

I did not saw any problem with the other rules, including self-closing-comp.

from eslint-plugin-react.

steida avatar steida commented on May 12, 2024

With React subclassing the only possible detection is jsx syntax only. There is no other shape you can use to detect React class I suppose.

from eslint-plugin-react.

framerate avatar framerate commented on May 12, 2024

I may be off base, but is this related to my issue?:

class RalphMacchio extends React.Component {
 ...blah blah
}

and...

React.render(<RalphMacchio />, document.getElementById('rm'));

Gives me:

src/app.jsx
  41:14  error  'RalphMacchio' is not defined  react/jsx-no-undef
  41:14  error  'RalphMacchio' is not defined  no-undef

Forgive me (and point me in the right direction) if this is unrelated. I'm trying to switch to ESLint to support my new ES6 projects. Here's my WIP .eslintrc:

{
    "parser": "babel-eslint",
    "env": {
        "node": true,
        "es6": true
    },

    "plugins": [
        "react"
    ],

    "settings": {
        "ecmascript": 6
    },

    "ecmaFeatures": {
        "jsx": true
    },

    "rules": {
        "no-undef": 2,
        "react/jsx-no-undef": 2,
        "no-unused-vars": 2,
        "react/jsx-uses-vars": 1,
        "no-console": 1,
        "eqeqeq": [2, "smart"],
        "quotes": [2, "single"]
    },

    "globals": {
        "document": true,
        "window": true,
        "_": true
    }
}

from eslint-plugin-react.

yannickcr avatar yannickcr commented on May 12, 2024

@framerate 2 things here:

It seems related to #19 for the no-undef error and it should be fixed in next ESLint release.

But the react/jsx-no-undef error seems to be a different one and I only reproduce it with babel-eslint as a parser. Can you open an issue for this case ?

from eslint-plugin-react.

framerate avatar framerate commented on May 12, 2024

Sure thing!

from eslint-plugin-react.

framerate avatar framerate commented on May 12, 2024

posted #30.

My goal here is to write ES6 + React 0.13 and have my code pass ESLint. Other than IGNORING undef, do I have another option yet or am I one the right track?

from eslint-plugin-react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.