1. 16 May, 2017 2 commits
  2. 15 May, 2017 2 commits
  3. 14 May, 2017 1 commit
  4. 11 May, 2017 1 commit
  5. 08 May, 2017 1 commit
  6. 05 May, 2017 1 commit
  7. 19 Apr, 2017 1 commit
  8. 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
  9. 07 Mar, 2017 1 commit
  10. 05 Mar, 2017 2 commits
  11. 24 Feb, 2017 2 commits
  12. 05 Dec, 2016 1 commit
  13. 21 Nov, 2016 1 commit
  14. 28 Oct, 2016 1 commit
  15. 22 Oct, 2016 1 commit
  16. 03 Oct, 2016 1 commit
  17. 01 Oct, 2016 1 commit
  18. 30 Sep, 2016 1 commit
  19. 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
  20. 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
  21. 19 Sep, 2016 1 commit
  22. 17 Sep, 2016 2 commits
  23. 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
  24. 11 Sep, 2016 1 commit
  25. 02 Sep, 2016 1 commit
  26. 01 Sep, 2016 1 commit
  27. 31 Aug, 2016 2 commits
  28. 23 Aug, 2016 1 commit
  29. 22 Aug, 2016 1 commit
  30. 18 Aug, 2016 1 commit
  31. 01 Aug, 2016 1 commit
  32. 28 Jul, 2016 3 commits