1. 17 Sep, 2016 1 commit
  2. 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
  3. 11 Sep, 2016 1 commit
  4. 02 Sep, 2016 1 commit
  5. 01 Sep, 2016 1 commit
  6. 31 Aug, 2016 2 commits
  7. 23 Aug, 2016 1 commit
  8. 22 Aug, 2016 1 commit
  9. 18 Aug, 2016 1 commit
  10. 01 Aug, 2016 1 commit
  11. 28 Jul, 2016 3 commits
  12. 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
  13. 26 Jul, 2016 1 commit
  14. 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
  15. 24 Jul, 2016 1 commit
  16. 21 Jul, 2016 1 commit
  17. 20 Jul, 2016 2 commits
  18. 19 Jul, 2016 1 commit