raiden-network / light-client

The Raiden Light Client
https://raiden.network/
MIT License
33 stars 31 forks source link

deps: Update dependency eslint-plugin-simple-import-sort to v8 #3175

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-simple-import-sort ^7.0.0 -> ^8.0.0 age adoption passing confidence

Release Notes

lydell/eslint-plugin-simple-import-sort ### [`v8.0.0`](https://togithub.com/lydell/eslint-plugin-simple-import-sort/blob/HEAD/CHANGELOG.md#Version-800-2022-09-03) [Compare Source](https://togithub.com/lydell/eslint-plugin-simple-import-sort/compare/v7.0.0...v8.0.0) Node.js builtin modules prefixed with `node:` are now in a separate group by default (regex: `^node:`), above the packages group. (Node.js builtins *without* `node:` are still sorted together with npm packages like before.) Before: ```js import fs from "fs"; import _ from "lodash-es"; import { rmSync } from "node:fs"; ``` After: ```js import { rmSync } from "node:fs"; import fs from "fs"; import _ from "lodash-es"; ``` This is only a breaking change if you use the `node:` prefix in imports, and only in the form of that you need to autofix your files.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



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

codecov[bot] commented 2 years ago

Codecov Report

Merging #3175 (ebe4278) into master (fdb1870) will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##           master    #3175   +/-   ##
=======================================
  Coverage   93.02%   93.02%           
=======================================
  Files         213      213           
  Lines        8588     8588           
  Branches     1461     1461           
=======================================
  Hits         7989     7989           
  Misses        549      549           
  Partials       50       50           
Flag Coverage Δ
dapp 88.97% <ø> (ø)
dapp.unit 88.97% <ø> (ø)
sdk 95.15% <ø> (ø)
sdk.e2e 72.08% <ø> (+0.01%) :arrow_up:
sdk.integration 80.29% <ø> (ø)
sdk.unit 49.32% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.