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

New: Added max-lines-per-function rule (fixes #9842) #10188

Merged
merged 12 commits into from Jun 23, 2018
Merged

New: Added max-lines-per-function rule (fixes #9842) #10188

merged 12 commits into from Jun 23, 2018

Conversation

peteward44
Copy link
Contributor

What is the purpose of this pull request? (put an "X" next to item)

[ ] Documentation update
[ ] Bug fix (template)
[X] New rule (template)
[ ] Changes an existing rule (template)
[ ] Add autofixing to a rule
[ ] Add a CLI option
[ ] Add something to the core
[ ] Other, please explain:

Please describe what the rule should do:

It should allow a configurable limit of the max number of lines per function, much like how max-statements limits the number of statements. Also, there should be an "ignoreComments" boolean option, on by default, that skips comments when counting method length.

What category of rule is this? (place an "X" next to just one item)

[X] Enforces code style
[ ] Warns about a potential error
[ ] Suggests an alternate way of doing something
[ ] Other (please specify:)

Provide 2-3 code examples that this rule will warn about:

// eslint max-lines-per-function: ["error", 1]
// Good
function foo() { return 1 }
const bar = () => 2

// Bad
function foo() {
    return 1
}
const bar = () =>
    2

// eslint max-lines-per-function: ["error", 5, {ignoreComments: false}]
// Good
function foo() {
    // This is a multi-line
    // comment.
    doSomething();
}

// Bad
function foo() {
    // This is a multi-line
    // comment.
    doSomething();
    doSomethingElse();
}

function foo() {
    // This is a multi-line
    // comment that takes
    // three lines.
    doSomething();
}

// eslint max-lines-per-function: ["error", 3, {ignoreComments: true}]
// Good
function foo() {
    // This is a multi-line
    // comment.
    doSomething();
}

// Bad
function foo() {
    // This is a multi-line
    // comment.
    doSomething();
    doSomethingElse();
}

function foo() {
    doSomething();
    doSomethingElse();
}

Why should this rule be included in ESLint (instead of a plugin)?

It is a simple, basic rule similar to what already exists, and is a natural extension of a few of them. It's also very widely generic, and although it could replace max-statements in some uses, it checks a different metric. It also does not conflict with any other rules, and it's pretty much independent from everything short of the language itself.

Other linters and style guides in various languages already do similar:

  • Rubocop has Metrics/MethodLength which does exactly what I propose here, including the proposed option.
  • Google's JS style guide (by proxy of their C++ style guide), recommends 40 lines or fewer per function.
  • The Linux Kernel's style guide recommends 48 lines or fewer.

What changes did you make? (Give an overview)

Added a new rule "max-lines-per-function", as suggested in original issue #9842. Although this issue hasn't been approved yet, I wrote a similar plugin for my own purposes and thought I might as well submit it to the prioject.

Is there anything you'd like reviewers to focus on?

No

@jsf-clabot
Copy link

jsf-clabot commented Apr 5, 2018

CLA assistant check
All committers have signed the CLA.

@eslint-deprecated eslint-deprecated bot added the triage An ESLint team member will look at this issue soon label Apr 5, 2018
Copy link

@dead-claudia dead-claudia left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not an ESLint team member, but I still had a few thoughts to share.

@@ -0,0 +1,130 @@
# enforce a maximum function length (max-lines-per-function)

Some people consider large functions a code smell. Large functions tend to do a lot of things and can make it hard following what's going on. While there is not an objective maximum number of lines considered acceptable in a function, most people would agree it should not be above 200. Google's JS style guide (by proxy of their C++ style guide), recommends 40 lines or fewer per function. The Linux Kernel's style guide recommends 48 lines or fewer.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not quite sold on the description here - it seems too much like a clone of my original feature request (which was written to persuade, not simply explain). This should really be informative, without as much emphasis on other style guides. It's one thing to reference Google's style guide*, but the kernel style guide reference doesn't belong here.

You might want to look at this comment for a few more ideas on what you could include. Specifically, it might be worth mentioning how with those, max-statements would fail to capture the size of the method in those situations.** (It's worth noting that in that comment, I pointed to only the vdom side, not cases with long method chains, etc.)

* Preferably with a link to both the JS style guide and the relevant C++ section and with the awkward "by proxy of ..." recast to be a bit easier to follow.

** If you choose to link to those, it'd be better if you linked to the files with exact commit hashes. That way, it doesn't go stale as quickly.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've rewritten the introduction and included an example used from your comment to explain the differences between the other rules. Thanks


## Rule Details

This rule enforces a maximum number of lines per function, in order to aid in maintainability and reduce complexity. This rule does not count any top-level function code.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be worth referencing max-lines here specifically for the case of top-level code. Also, "top-level function code" is ambiguous here: does it include either/both of these?

// 1.
function foo() {
    // ...
}

// 2.
;(function () {
    // ...
})()

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any function declaration will by included, so yes, both your examples will be counted. "top level function" isn't the right name


## Options

This rule has a number or object option:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

200 is a bit pointlessly high...if you're writing a function that long, you're doing something massively wrong 99% of the time. (The remaining 1% is for things like config files and autogenerated code.)

I could see 50 as a decent default. For comparison, Rubocop's Metrics/MethodLength defaults to 10 (which is pretty low, but still workable).

let skipBlankLines = true;

if (typeof option === "object") {
if (option.hasOwnProperty("max") && typeof option.max === "number") {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you're checking typeof like this, you don't need to also check hasOwnProperty.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right, the option object parsing code was copied from the max-lines and max-len rules which have the same style

const lines = sourceCode.lines;

const option = context.options[0];
let maxLines = 100;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You said in the docs that the default was 200, not 100. (Note: if you change the default as I suggested earlier, you'll need to change this, too.)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've changed the default to 50 but this is very subjective so I guess it's up for one of the maintainers to agree a sensible default

@aladdin-add aladdin-add added rule Relates to ESLint's core rules feature This change adds a new feature to ESLint evaluating The team will evaluate this issue to decide whether it meets the criteria for inclusion and removed triage An ESLint team member will look at this issue soon labels Apr 7, 2018
@peteward44
Copy link
Contributor Author

I tried to rebase this to the latest master but looks like i've messed it up, i can recreate the PR once the feature is accepted by the core team 👍

@ljharb
Copy link
Sponsor Contributor

ljharb commented Apr 25, 2018

@peteward44 there’s no need to recreate a PR; freshly rebasing on master and force pushing should fix it.

@peteward44
Copy link
Contributor Author

That worked, thanks 👍

@platinumazure
Copy link
Member

I'm a bit confused about which PR we should be looking at here: This one, or #9842. Could someone please summarize the differences between the two and let us know which one we should focus on?

@dead-claudia
Copy link

@platinumazure #9842 isn't a PR. 😉

@platinumazure
Copy link
Member

platinumazure commented May 28, 2018 via email

@@ -133,6 +133,11 @@ module.exports = {
* @private
*/
function processFunction(node) {

// attempting to process a FunctionExpression that's already been processed by a MethodDefinition or Property above it - so ignore
if (node.type === "FunctionExpression" && node.parent && (node.parent.type === "MethodDefinition" || node.parent.type === "Property")) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because computed property name can have other functions, we need to check node === node.parent.value if the parent node is a Property or a MethodDefinition.

And we need some additional checks if the parent node is a Property.

  • if parent.kind is "get"/"set" then it's a getter/setter. (e.g., get foo() {})
  • if parent.method is true then it's a method shorthand. (e.g., foo() {})
  • otherwise, this function expression is independent. (e.g., foo: function bar() {})

So I think better if it makes countNode variable or something like rather than it adds Property and MethodDefinition as entry points.
E.g., const node = isEmbedded(funcNode) ? funcNode.parent : funcNode;.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep good points

… so static methods and class properties are counted from the root of their statements instead of just the FunctionExpression.

Added ignoreIIFEs option
…red as entrypoints. Better property / method detection as per PR feedback
@@ -86,6 +89,7 @@ module.exports = {
let maxLines = 50;
let ignoreComments = true;
let skipBlankLines = true;
let ignoreIIFEs = true;
Copy link
Sponsor Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is a boolean defaulted to true?

If the default is to be to ignore IIFEs (which i don’t agree with) it should be named such that the default is false. Perhaps just “IIFEs”?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, I have changed the defaults for the boolean args to default to false (just like rule max-len does) and renamed the option to "IIFEs"

return false;
}
if (node.parent.type === "MethodDefinition") {
return node.parent.kind === "method";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All kinds of MethodDefinition are embedded.

return node.parent.kind === "method";
}
if (node.parent.type === "Property") {
return node.parent.kind === "get" || node.parent.kind === "set";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And node.parent.method === true is embedded as well.

…ts to skipComments to keep consistent with other rules. Updated doc with new IIFEs option. Made detecting "Property" function definitions more robust as per PR feedback.
* @returns {boolean} True if it's an IIFE
*/
function isIIFE(node) {
return node.type === "FunctionExpression" && node.parent && node.parent.type === "CallExpression";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This condition looks like to match callbacks. I guess that it probably needs node.parent.callee === node.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for all your help on the AST stuff 👍

@platinumazure platinumazure added accepted There is consensus among the team that this change meets the criteria for inclusion and removed evaluating The team will evaluate this issue to decide whether it meets the criteria for inclusion labels Jun 19, 2018
@platinumazure
Copy link
Member

Marking as "accepted" since the corresponding issue is now accepted.

Copy link
Member

@platinumazure platinumazure left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @peteward44, thanks for writing the PR (and for your patience as we worked through accepting the issue)!

One change I'd like to see in the docs: Not sure what the best way to do this is, exactly, but I think it would be good to clarify that the number option corresponds to the max property in the object option. I would suggest taking a look at some of the other rules you've referenced/updated (which have a similar schema) to see what could look good.

Also left a few inline comments. Let me know if you have any questions. Thanks!

if (typeof option === "object") {
if (typeof option.max === "number") {
maxLines = option.max;
} else if (typeof option.maximum === "number") {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this condition can be removed, as maximum isn't allowed in the schema for this rule.


return comment &&
(start.line < lineNumber || (start.line === lineNumber && isFirstTokenOnLine)) &&
(end.line > lineNumber || (end.line === lineNumber && end.column === line.length));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this be tripped up by a block comment with trailing whitespace? (e.g., /* some comment */\t\t where \t is a tab stop, or any other trailing whitespace)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're absolutely right - this function was copied verbatim from the max-len rule, so that will have the same issue too.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've checked the max-len rule to see if it's got the same problem, but it's ok because they trim the end of the line previously. I've fixed this issue here though

/**
* Given a list of comment nodes, return the line numbers for those comments.
* @param {Array} comments An array of comment nodes.
* @returns {Map.<string,Node>} An array of line numbers containing comments.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this description is quite accurate. In reality, what is being returned is a map with numeric keys and comment token values.


const parserOptions = { ecmaVersion: 6 };

const ruleTester = new RuleTester();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optionally, you could pass in the parserOptions to the RuleTester constructor since (I assume) no test actually needs to run with ecmaVersion: 5. This will result in all tests running with ecmaVersion: 6 by default.

code: `class A {
static
foo
// This FunctionExpression starts from below '(', so this is 3.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment seems inaccurate given the error message below.

var obj = {
get
foo
// This FunctionExpression starts from below '(', so this is 3.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment seems inaccurate given the error message below.

foo +
bar
]
// This FunctionExpression starts from below '(', so this is 3.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment seems inaccurate given the error message below.

…n detecting full line comments.

Updated old code comments.
ParserOptions in tests passed through to RuleTester constructor.
Copy link
Member

@platinumazure platinumazure left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one small doc change, and this looks good to me. (See inline comment)


The other suggestion I have (but this is completely optional) is to take the comments describing test cases and move them outside of the test case itself so it's a little more visible.

One example:

        {
            code: `// Getters/setters are similar to it.
var obj = {
    get
    foo
    () {
        return 1
    }
}`

This could be turned into something like this:

        // Getters/setters are similar to it.
        {
            code: `
var obj = {
    get
    foo
    () {
        return 1
    }
}`,

And adding extra line breaks before the comments can help too.

Again, all of this is completely optional-- just a suggestion for helping make the comments more visible for future contributors. Thanks for considering!

@@ -46,7 +46,7 @@ This rule has a number or object options:

* `"IIFEs": true` include any code included in IIFEs.

Optionally, you may specify an singular integer for the `max` option:
Alternatively, you may specify an single integer for the `max` option:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is looking a lot better, but we should still replace "an" with "a" here. (I think maybe you had written "an integer" at one point, then added "singular"/"single"?)

@peteward44
Copy link
Contributor Author

I've added comments for each test (and some extra tests i thought of whilst doing so). I think i've addressed everything raised now? Thanks 👍

Copy link
Member

@platinumazure platinumazure left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@platinumazure platinumazure merged commit 0feedfd into eslint:master Jun 23, 2018
@platinumazure
Copy link
Member

Merging. Thanks @peteward44 for contributing (and for your patience as we worked out some of the kinks)!

ntwb pushed a commit to stylelint/eslint-config-stylelint that referenced this pull request Jun 23, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
ntwb pushed a commit to stylelint/stylelint-demo that referenced this pull request Jun 23, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
ntwb pushed a commit to stylelint/stylelint that referenced this pull request Jun 23, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
ntwb pushed a commit to stylelint/stylelint-config-recommended that referenced this pull request Jun 23, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
ntwb pushed a commit to stylelint/stylelint-config-standard that referenced this pull request Jun 23, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
mkody pushed a commit to sugrocks/cn-schedule that referenced this pull request Jun 23, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
bors bot added a commit to IMA-WorldHealth/Tree that referenced this pull request Jun 23, 2018
5: Update eslint to the latest version 🚀 r=jniles a=greenkeeper[bot]


## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴



Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
bors bot added a commit to IMA-WorldHealth/bhima that referenced this pull request Jun 23, 2018
2921: Update eslint to the latest version 🚀 r=jniles a=greenkeeper[bot]


## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴



Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
bors bot added a commit to IMA-WorldHealth/topic that referenced this pull request Jun 23, 2018
5: Update eslint to the latest version 🚀 r=jniles a=greenkeeper[bot]


## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴



Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
bors bot added a commit to IMA-WorldHealth/bhima that referenced this pull request Jun 23, 2018
2921: Update eslint to the latest version 🚀 r=jniles a=greenkeeper[bot]


## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴



Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
posva pushed a commit to posva/eslint-config-posva that referenced this pull request Jun 24, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
rohmanhm pushed a commit to rohmanhm/nullfined that referenced this pull request Jun 26, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
nfantone pushed a commit to senecajs/seneca-amqp-transport that referenced this pull request Jun 26, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
goto-bus-stop pushed a commit to u-wave/react-vimeo that referenced this pull request Aug 14, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
goto-bus-stop pushed a commit to u-wave/core that referenced this pull request Aug 14, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
goto-bus-stop pushed a commit to u-wave/http-api that referenced this pull request Aug 14, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
goto-bus-stop pushed a commit to u-wave/parse-chat-markup that referenced this pull request Aug 14, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
goto-bus-stop pushed a commit to u-wave/web that referenced this pull request Aug 16, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
goto-bus-stop pushed a commit to u-wave/u-wave-source-youtube that referenced this pull request Aug 21, 2018
## Version **5.0.0** of **[eslint](https://github.com/eslint/eslint)** was just published.

<table>
  <tr>
    <th align=left>
      Dependency
    </th>
    <td>
      <code>[eslint](https://github.com/eslint/eslint)</code>
    </td>
  </tr>
  <tr>
      <th align=left>
       Current Version
      </th>
      <td>
        4.19.1
      </td>
    </tr>
  <tr>
    <th align=left>
      Type
    </th>
    <td>
      devDependency
    </td>
  </tr>
</table>



The version **5.0.0** is **not covered** by your **current version range**.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of eslint.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


---


<details>
<summary>Release Notes</summary>
<strong>v5.0.0</strong>

<p><a href="https://eslint.org/blog/2018/06/eslint-v5.0.0-released" rel="nofollow">Release blogpost</a></p>
<p><a href="https://eslint.org/docs/user-guide/migrating-to-5.0.0" rel="nofollow">Migration guide</a></p>
<ul>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><tt>0feedfd</tt></a> New: Added max-lines-per-function rule (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="288189487" data-permission-text="Issue title is private" data-url="eslint/eslint#9842" href="https://urls.greenkeeper.io/eslint/eslint/issues/9842">#9842</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="311720194" data-permission-text="Issue title is private" data-url="eslint/eslint#10188" href="https://urls.greenkeeper.io/eslint/eslint/pull/10188">#10188</a>) (peteward44)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><tt>daefbdb</tt></a> Upgrade: eslint-scope and espree to 4.0.0 (refs <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330902188" data-permission-text="Issue title is private" data-url="eslint/eslint#10458" href="https://urls.greenkeeper.io/eslint/eslint/issues/10458">#10458</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="334654166" data-permission-text="Issue title is private" data-url="eslint/eslint#10500" href="https://urls.greenkeeper.io/eslint/eslint/pull/10500">#10500</a>) (Brandon Mills)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><tt>077358b</tt></a> Docs: no-process-exit: recommend process.exitCode (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332422809" data-permission-text="Issue title is private" data-url="eslint/eslint#10478" href="https://urls.greenkeeper.io/eslint/eslint/pull/10478">#10478</a>) (Andres Kalle)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><tt>f93d6ff</tt></a> Fix: do not fail on unknown operators from custom parsers (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331977710" data-permission-text="Issue title is private" data-url="eslint/eslint#10475" href="https://urls.greenkeeper.io/eslint/eslint/issues/10475">#10475</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="332018684" data-permission-text="Issue title is private" data-url="eslint/eslint#10476" href="https://urls.greenkeeper.io/eslint/eslint/pull/10476">#10476</a>) (Rubén Norte)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><tt>05343fd</tt></a> Fix: add parens for yield statement (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328600597" data-permission-text="Issue title is private" data-url="eslint/eslint#10432" href="https://urls.greenkeeper.io/eslint/eslint/issues/10432">#10432</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331502212" data-permission-text="Issue title is private" data-url="eslint/eslint#10468" href="https://urls.greenkeeper.io/eslint/eslint/pull/10468">#10468</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><tt>d477c5e</tt></a> Fix: check destructuring for "no-shadow-restricted-names" (fixes <a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331446399" data-permission-text="Issue title is private" data-url="eslint/eslint#10467" href="https://urls.greenkeeper.io/eslint/eslint/issues/10467">#10467</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="331523772" data-permission-text="Issue title is private" data-url="eslint/eslint#10470" href="https://urls.greenkeeper.io/eslint/eslint/pull/10470">#10470</a>) (Pig Fang)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><tt>7a7580b</tt></a> Update: Add considerPropertyDescriptor option to func-name-matching (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="248240782" data-permission-text="Issue title is private" data-url="eslint/eslint#9078" href="https://urls.greenkeeper.io/eslint/eslint/pull/9078">#9078</a>) (Dieter Luypaert)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><tt>e0a0418</tt></a> Fix: crash on optional catch binding (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328393696" data-permission-text="Issue title is private" data-url="eslint/eslint#10429" href="https://urls.greenkeeper.io/eslint/eslint/pull/10429">#10429</a>) (Toru Nagashima)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><tt>de4dba9</tt></a> Docs: styling team members (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330932041" data-permission-text="Issue title is private" data-url="eslint/eslint#10460" href="https://urls.greenkeeper.io/eslint/eslint/pull/10460">#10460</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><tt>5e453a3</tt></a> Docs: display team members in tables. (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="328617151" data-permission-text="Issue title is private" data-url="eslint/eslint#10433" href="https://urls.greenkeeper.io/eslint/eslint/pull/10433">#10433</a>) (薛定谔的猫)</li>
<li><a class="commit-link" href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><tt>b1895eb</tt></a> Docs: Restore intentional spelling mistake (<a class="issue-link js-issue-link" data-error-text="Failed to load issue title" data-id="330914393" data-permission-text="Issue title is private" data-url="eslint/eslint#10459" href="https://urls.greenkeeper.io/eslint/eslint/pull/10459">#10459</a>) (Wilfred Hughes)</li>
</ul>
</details>

<details>
<summary>Commits</summary>
<p>The new version differs by 148 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f"><code>36ced0a</code></a> <code>5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5fd56329e423b614c5fd3ad7bd12ca41bb59dcbb"><code>5fd5632</code></a> <code>Build: changelog update for 5.0.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/0feedfdb267e110775f0a50dd5bc801c77260ae5"><code>0feedfd</code></a> <code>New: Added max-lines-per-function rule (fixes #9842) (#10188)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/daefbdb6c802a3d78041aa6b1f8e99eb5bd83d39"><code>daefbdb</code></a> <code>Upgrade: eslint-scope and espree to 4.0.0 (refs #10458) (#10500)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/077358b6ec7d5dd0c531e6db6f217e10c1c791bb"><code>077358b</code></a> <code>Docs: no-process-exit: recommend process.exitCode (#10478)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/f93d6ff53acd19b39dbc1c7d0e5ffa7d71c826db"><code>f93d6ff</code></a> <code>Fix: do not fail on unknown operators from custom parsers (fixes #10475) (#10476)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/05343fdd1be4bc444209c45ec0341110444dbc83"><code>05343fd</code></a> <code>Fix: add parens for yield statement (fixes #10432) (#10468)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/d477c5e684b52b307e56ef92714e66b32bc0db5a"><code>d477c5e</code></a> <code>Fix: check destructuring for "no-shadow-restricted-names" (fixes #10467) (#10470)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/7a7580b860e5d2ea38f9b1ec6860ea6f3c744d42"><code>7a7580b</code></a> <code>Update: Add considerPropertyDescriptor option to func-name-matching (#9078)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/e0a0418fef214e0c548d2ddb02e98182e625f93a"><code>e0a0418</code></a> <code>Fix: crash on optional catch binding (#10429)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/de4dba963963d4fed27dc770e52c2d23fd0542d9"><code>de4dba9</code></a> <code>Docs: styling team members (#10460)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/5e453a3cd5da7a14116e2d10ae08e3b0bafbe860"><code>5e453a3</code></a> <code>Docs: display team members in tables. (#10433)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/b1895eb5a7d9622598804acc28480abeb6c0ba64"><code>b1895eb</code></a> <code>Docs: Restore intentional spelling mistake (#10459)</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/a9da57d56b13b47de89d00b8cbd616523d0ea9af"><code>a9da57d</code></a> <code>5.0.0-rc.0</code></li>
<li><a href="https://urls.greenkeeper.io/eslint/eslint/commit/3ac3df665175fc5009441e874e30ebec792ad8f2"><code>3ac3df6</code></a> <code>Build: changelog update for 5.0.0-rc.0</code></li>
</ul>
<p>There are 148 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/eslint/eslint/compare/f1f1bdfffe0c2675e42cb6ad58145d40a6870135...36ced0afca1bc0e1cbbc13cbeaacf9e7cf00841f">full diff</a></p>
</details>

<details>
  <summary>FAQ and help</summary>

  There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>

---


Your [Greenkeeper](https://greenkeeper.io) bot 🌴
@eslint-deprecated eslint-deprecated bot locked and limited conversation to collaborators Dec 21, 2018
@eslint-deprecated eslint-deprecated bot added the archived due to age This issue has been archived; please open a new issue for any further discussion label Dec 21, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
accepted There is consensus among the team that this change meets the criteria for inclusion archived due to age This issue has been archived; please open a new issue for any further discussion feature This change adds a new feature to ESLint rule Relates to ESLint's core rules
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants