elcoosp / rxdxx

MIT License
0 stars 0 forks source link

chore(deps): update dependency eslint-plugin-simple-import-sort to v4 - autoclosed #45

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 5 years ago

This PR contains the following updates:

Package Type Update Change
eslint-plugin-simple-import-sort devDependencies major 3.1.0 -> 4.0.0

Release Notes

lydell/eslint-plugin-simple-import-sort ### [`v4.0.0`](https://togithub.com/lydell/eslint-plugin-simple-import-sort/blob/master/CHANGELOG.md#Version-400-2019-06-19) [Compare Source](https://togithub.com/lydell/eslint-plugin-simple-import-sort/compare/v3.1.1...v4.0.0) - Changed: Sorting is now more human – it is case insensitive (matching the default behavior of TSLint, as well as many IDEs) and numbers are sorted by their numeric values. This might cause some churn but feels a lot nicer. See [#​7] for more discussion. - Improved: `from` paths ending with dots in various ways used to be treated specially. This has now been simplified, which gives a more consistent sorting. Now, `"."` and `".."` are treated as `"./"` and `"../"` – and those are the only special cases for “dotty” paths. For example, you might see `import x from "."` now sorting before `import y from "./y"`. - Fixed: `".x"` is no longer considered to be a relative import. Only `from` paths equal to `"."` or `".."`, or that start with `"./"` or `"../"` are truly relative. This is a bit of an edge case, but if you do have “weird” imports starting with dots in unusual ways you might notice them jumping up to another group of imports. - Fixed: `import {} from "a"` is no longer considered a side-effect import. Only imports completely lacking the `{...} from` part are. Remove `{} from` if you relied on this from earlier versions. - Improved: Trailing spaces after imports are now preserved. Before, if you accidentally added some trailing spaces it would result in a “Run autofix to sort these imports!” error, but the autofix wouldn’t actually sort anything – it would only remove some spaces. That was a bit weird. Now, those spaces are preserved. It is up to other rules or [Prettier] to take care of trailing spaces. ### [`v3.1.1`](https://togithub.com/lydell/eslint-plugin-simple-import-sort/blob/master/CHANGELOG.md#Version-311-2019-05-16) [Compare Source](https://togithub.com/lydell/eslint-plugin-simple-import-sort/compare/v3.1.0...v3.1.1) - Fixed: Semicolon-free code style is now supported. The plugin now leaves a semicolon at the start of a line of code after an import alone.

Renovate configuration

:date: Schedule: At any time (no schedule defined).

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

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

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



Newsflash: Renovate has joined WhiteSource, and is now free for all use. Learn more or view updated terms and privacy policies.

codecov[bot] commented 5 years ago

Codecov Report

Merging #45 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #45   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           5      5           
  Lines          20     20           
  Branches        6      6           
=====================================
  Hits           20     20

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 7cd4a6a...0a1bdb6. Read the comment docs.