Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: update ESLint to current version #10561

Closed
wants to merge 4 commits into from
Closed

Commits on Jan 6, 2017

  1. benchmark,lib,test: adjust for linting

    Formatting changes for upcoming linter update.
    Trott committed Jan 6, 2017
    Configuration menu
    Copy the full SHA
    458cfaf View commit details
    Browse the repository at this point in the history
  2. tools: update ESLint to current version

    We have been stalled on ESLint 3.8.0 for some time. Current ESLint is
    3.13.0. We have been unable to upgrade because of more aggressive
    reporting on some rules, including indentation.
    
    ESLint configuration options and bugfixes are now such that we can
    reasonably upgrade.
    Trott committed Jan 6, 2017
    Configuration menu
    Copy the full SHA
    c5e4786 View commit details
    Browse the repository at this point in the history
  3. tools: remove custom align-function-arguments rule

    ESLint `indent` rule now has options that duplicate functionality in our
    custom `align-function-arguments` rule. Remove
    `align-function-arguments` custom rule.
    Trott committed Jan 6, 2017
    Configuration menu
    Copy the full SHA
    de34bd5 View commit details
    Browse the repository at this point in the history
  4. tools: remove no-useless-regex-char-class-escape

    The `no-useless-regex-char-class-escape` custom lint rule was introduced
    as a less aggressive alternative to some enhancements that were
    introduced into ESLint. Those enhancements were blocking us from
    updating ESLint. However, they have since been relaxed and the custom
    rule is no longer needed. Remove it.
    Trott committed Jan 6, 2017
    Configuration menu
    Copy the full SHA
    5133d77 View commit details
    Browse the repository at this point in the history