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: enable no-extra-semi rule in the linter #2207

Closed
wants to merge 2 commits into from

Commits on Jul 19, 2015

  1. tools: enable no-extra-semi rule in the linter

    This rule ensures that no unnecessary semicolon after function
    declarations is allowed, e.g. this will error:
    
    function x() {
      // code
    };
    silverwind committed Jul 19, 2015
    Configuration menu
    Copy the full SHA
    e3cf1c9 View commit details
    Browse the repository at this point in the history
  2. lib,test: fix semicolon related linter errors

    See eslint/eslint#3075 regarding body-less
    loops.
    silverwind committed Jul 19, 2015
    Configuration menu
    Copy the full SHA
    bd5980d View commit details
    Browse the repository at this point in the history