Skip to content
This repository has been archived by the owner on May 18, 2019. It is now read-only.

fix(deps): update eslint and prettier (minor) #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 16, 2019

This PR contains the following updates:

Package Type Update Change References
eslint dependencies minor ^5.13.0 -> ^5.16.0 homepage, source
prettier devDependencies minor 1.16.4 -> 1.17.1 homepage, source

Release Notes

eslint/eslint

v5.16.0

Compare Source

  • dfef227 Build: gensite passes rulesMeta to formatter rendering (#​11567) (Kevin Partington)
  • c06d38c Fix: Allow HTML formatter to handle no meta data (#​11566) (Ilya Volodin)
  • 87a5c03 Docs: func-style: clarify when allowArrowFunctions is used (#​11548) (Oliver Joseph Ash)
  • bc3e427 Update: pass rule meta to formatters RFC 10 (#​11551) (Chris Meyer)
  • b452f27 Chore: Update README to pull in reviewer data (#​11506) (Nicholas C. Zakas)
  • afe3d25 Upgrade: Bump js-yaml dependency to fix Denial of Service vulnerability (#​11550) (Vernon de Goede)
  • 4fe7eb7 Chore: use nyc instead of istanbul (#​11532) (Toru Nagashima)
  • f16af43 Chore: fix formatters/table test (#​11534) (Toru Nagashima)
  • 78358a8 Docs: fix duplicate punctuation in CLI docs (#​11528) (Teddy Katz)

v5.15.3

Compare Source

v5.15.2

Compare Source

v5.15.1

Compare Source

v5.15.0

Compare Source

v5.14.1

Compare Source

v5.14.0

Compare Source

prettier/prettier

v1.17.1

Compare Source

diff

  • Range: Fix ranged formatting not using the correct line width (#​6050 by @​mathieulj)

    // Input
    function f() {
      if (true) {
        call("this line is 79 chars", "long", "it should", "stay as single line");
      }
    }
    
    // Output (Prettier 1.17.0 run with --range-start 30 --range-end 110)
    function f() {
      if (true) {
        call(
          "this line is 79 chars",
          "long",
          "it should",
          "stay as single line"
        );
      }
    }
    
    // Output (Prettier 1.17.0 run without range)
    function f() {
      if (true) {
        call("this line is 79 chars", "long", "it should", "stay as single line");
      }
    }
    
    // Output (Prettier 1.17.1 with and without range)
    function f() {
      if (true) {
        call("this line is 79 chars", "long", "it should", "stay as single line");
      }
    }
  • JavaScript: Fix closure compiler typecasts ([#​5947] by @​jridgewell)

    If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis.

    // Input
    test(/** @​type {!Array} */(arrOrString).length);
    test(/** @​type {!Array} */((arrOrString)).length + 1);
    
    // Output (Prettier 1.17.0)
    test(/** @​type {!Array} */ (arrOrString.length));
    test(/** @​type {!Array} */ (arrOrString.length + 1));
    
    // Output (Prettier 1.17.1)
    test(/** @​type {!Array} */ (arrOrString).length);
    test(/** @​type {!Array} */ (arrOrString).length + 1);
  • JavaScript: respect parenthesis around optional chaining before await (#​6087 by @​evilebottnawi)

    // Input
    async function myFunction() {
      var x = (await foo.bar.blah)?.hi;
    }
    
    // Output (Prettier 1.17.0)
    async function myFunction() {
      var x = await foo.bar.blah?.hi;
    }
    
    // Output (Prettier 1.17.1)
    async function myFunction() {
      var x = (await foo.bar.blah)?.hi;
    }
  • Handlebars: Fix {{else}}{{#if}} into {{else if}} merging (#​6080 by @​dcyriller)

    // Input
    {{#if a}}
      a
    {{else}}
      {{#if c}}
        c
      {{/if}}
      e
    {{/if}}
    
    // Output (Prettier 1.17.0)
    {{#if a}}
      a
    {{else if c}}
      c
    e
    {{/if}}
    
    // Output (Prettier 1.17.1)
    Code Sample
    {{#if a}}
      a
    {{else}}
      {{#if c}}
        c
      {{/if}}
      e
    {{/if}}
    
  • JavaScript: Improved multiline closure compiler typecast comment detection (#​6070 by @​yangsu)

    Previously, multiline closure compiler typecast comments with lines that
    start with * weren't flagged correctly and the subsequent parenthesis were
    stripped. Prettier 1.17.1 fixes this issue.

    // Input
    const style =/**
     * @​type {{
     *   width: number,
     * }}
    */({
      width,
    });
    
    // Output (Prettier 1.17.0)
    const style =/**
     * @​type {{
     *   width: number,
     * }}
    */ {
      width,
    };
    
    // Output (Prettier 1.17.1)
    const style =/**
     * @​type {{
     *   width: number,
     * }}
    */({
      width,
    });

v1.17.0

Compare Source

diff

🔗 Release Notes


Renovate configuration

📅 Schedule: "after 9pm,before 9am" in timezone Asia/Tokyo.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. View repository job log here.

@renovate renovate bot added the renovate label Feb 16, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 13d397e to 361eaa5 Compare February 19, 2019 17:39
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.14.0 fix(deps): update dependency eslint to ^5.14.1 Feb 19, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from 4381640 to b86f50b Compare March 3, 2019 12:27
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.14.1 fix(deps): update dependency eslint to ^5.15.0 Mar 3, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from b86f50b to 0b3580b Compare March 6, 2019 12:48
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.15.0 fix(deps): update dependency eslint to ^5.15.1 Mar 6, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 0b3580b to 59096b0 Compare March 16, 2019 18:24
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.15.1 fix(deps): update dependency eslint to ^5.15.2 Mar 16, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 59096b0 to b69e144 Compare March 19, 2019 16:36
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.15.2 fix(deps): update dependency eslint to ^5.15.3 Mar 19, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from b69e144 to d6e0459 Compare March 31, 2019 12:38
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.15.3 fix(deps): update dependency eslint to ^5.16.0 Mar 31, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from d6e0459 to f16c6ea Compare April 13, 2019 21:26
@renovate renovate bot changed the title fix(deps): update dependency eslint to ^5.16.0 fix(deps): update eslint and prettier (minor) Apr 13, 2019
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from f16c6ea to 2c390fc Compare May 14, 2019 14:34
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant