1. 19 Apr, 2017 1 commit
  2. 09 Mar, 2017 1 commit
    • Ben Alpert's avatar
      Remove 'guard-for-in' lint rule (#1773) · 9c9f8f66
      Ben Alpert authored
      Iterating over an object's keys using `for/in` is idiomatic and it's safe (in all modern browsers) to not check hasOwnProperty as long as the object is a plain object. Can we remove this lint rule?
      9c9f8f66
  3. 07 Mar, 2017 1 commit
  4. 05 Mar, 2017 2 commits
  5. 24 Feb, 2017 2 commits
  6. 05 Dec, 2016 1 commit
  7. 21 Nov, 2016 1 commit
  8. 28 Oct, 2016 1 commit
  9. 22 Oct, 2016 1 commit
  10. 03 Oct, 2016 1 commit
  11. 01 Oct, 2016 1 commit
  12. 30 Sep, 2016 1 commit
  13. 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
  14. 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
  15. 19 Sep, 2016 1 commit
  16. 17 Sep, 2016 2 commits
  17. 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
  18. 11 Sep, 2016 1 commit
  19. 02 Sep, 2016 1 commit
  20. 01 Sep, 2016 1 commit
  21. 31 Aug, 2016 2 commits
  22. 23 Aug, 2016 1 commit
  23. 22 Aug, 2016 1 commit
  24. 18 Aug, 2016 1 commit
  25. 01 Aug, 2016 1 commit
  26. 28 Jul, 2016 3 commits
  27. 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
  28. 26 Jul, 2016 1 commit
  29. 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
  30. 24 Jul, 2016 1 commit
  31. 21 Jul, 2016 1 commit
  32. 20 Jul, 2016 2 commits
  33. 19 Jul, 2016 1 commit