1. 01 Oct, 2016 1 commit
  2. 30 Sep, 2016 1 commit
  3. 22 Sep, 2016 1 commit
    • Ville Immonen's avatar
      Update eslint-plugin-react and enable new rules (#696) · 2ed2b59a
      Ville Immonen authored
      * Update eslint-plugin-react and enable new rules
      
      New rules:
      * `react/no-danger-with-children` (yannickcr/eslint-plugin-react#710)
      * `react/no-find-dom-node` (yannickcr/eslint-plugin-react#678)
      * `react/style-prop-object` (yannickcr/eslint-plugin-react#715)
      
      * Remove react/no-find-dom-node for now
      2ed2b59a
  4. 21 Sep, 2016 1 commit
    • Ville Immonen's avatar
      Create a shareable ESLint configuration package (#689) · a2d0469c
      Ville Immonen authored
      * Move ESLint configuration to a separate package
      
      * Remove the ESLint configuration, moved to eslint-config-react-app
      
      * Update ESLint instructions
      
      * Pin the package versions in eslint-config-react-app
      
      * Add a README for eslint-config-react-app
      
      * Update README.md
      
      * Update README.md
      
      * Update README.md
      
      * Update README.md
      
      * Update package.json
      
      * Update package.json
      
      * Update production eslint-loader config
      
      * Add the ESLint config to devDependencies of the repo
      a2d0469c
  5. 19 Sep, 2016 1 commit
  6. 17 Sep, 2016 2 commits
  7. 16 Sep, 2016 1 commit
    • Vesa Laakso's avatar
      Exempt variables prefixed with underscore from no-unused-vars rule (#640) · e333b8b8
      Vesa Laakso authored
      * Split no-unused-vars ESLint config to multiple lines
      
      * Exempt variables prefixed with underscore from no-unused-vars rule
      
      This is useful when e.g. using object spread operator to remove only a
      certain field from the object.
      
      For example, this can be used to ignore a property from React
      component's `this.props`:
      
          render() {
              const { someAttribute: _unused, ...rest } = this.props;
              return <pre>{ JSON.stringify(rest) }</pre>;
          }
      e333b8b8
  8. 11 Sep, 2016 1 commit
  9. 02 Sep, 2016 1 commit
  10. 01 Sep, 2016 1 commit
  11. 31 Aug, 2016 2 commits
  12. 23 Aug, 2016 1 commit
  13. 22 Aug, 2016 1 commit
  14. 18 Aug, 2016 1 commit
  15. 01 Aug, 2016 1 commit
  16. 28 Jul, 2016 3 commits
  17. 27 Jul, 2016 1 commit
    • Florian Goße's avatar
      Use keyword `warn` in eslint config (#234) · e839dff8
      Florian Goße authored
      * Use keyword `warn` in eslint config
      
      We can use the keyword `warn` for rule configuration instead of a number.
      
      * Fix comment which where WARNING was replaced
      
      * Remove extra apostrophe
      e839dff8
  18. 26 Jul, 2016 1 commit
  19. 25 Jul, 2016 1 commit
    • Ethan Cohen's avatar
      [dependency] - Add select eslint-plugin-jsx-a11y rules to lint config. (#175) · 90d49f83
      Ethan Cohen authored
      This project is a really good use case to apply some accessibility
      rules to the lint config. For beginners getting started with React, we
      can also teach/enforce basic accessibility rules in the web at author
      time.
      
      For now, I’ve just applied to the rules that are listed in
      `eslint-config-airbnb` because these are most real-world tested, and we
      can continue to add.
      
      Happy to help if there are any questions/issues/concerns about the
      plugin!
      90d49f83
  20. 24 Jul, 2016 1 commit
  21. 21 Jul, 2016 1 commit
  22. 20 Jul, 2016 2 commits
  23. 19 Jul, 2016 1 commit