eslint-plugin-simple-import-sort
Advanced tools
Comparing version 5.0.0 to 5.0.1
@@ -0,1 +1,6 @@ | ||
### Version 5.0.1 (2020-01-24) | ||
- Fixed: Side effect imports now correctly keep their original order in | ||
Node.js <12. Thanks to Irvin Zhan (@izhan)! | ||
### Version 5.0.0 (2019-11-22) | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "eslint-plugin-simple-import-sort", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"license": "MIT", | ||
@@ -35,16 +35,16 @@ "author": "Simon Lydell", | ||
"devDependencies": { | ||
"@typescript-eslint/parser": "2.8.0", | ||
"@typescript-eslint/parser": "2.17.0", | ||
"babel-eslint": "10.0.3", | ||
"cross-spawn": "7.0.1", | ||
"doctoc": "1.4.0", | ||
"eslint": "6.6.0", | ||
"eslint": "6.8.0", | ||
"eslint-config-lydell": "14.0.0", | ||
"eslint-plugin-import": "2.18.2", | ||
"eslint-plugin-jest": "23.0.4", | ||
"eslint-plugin-import": "2.20.0", | ||
"eslint-plugin-jest": "23.6.0", | ||
"eslint-plugin-markdown": "1.0.1", | ||
"eslint-plugin-prettier": "3.1.1", | ||
"eslint-plugin-vue": "6.0.1", | ||
"eslint-plugin-prettier": "3.1.2", | ||
"eslint-plugin-vue": "6.1.2", | ||
"jest": "24.9.0", | ||
"prettier": "1.19.1", | ||
"typescript": "3.7.2" | ||
"typescript": "3.7.5" | ||
}, | ||
@@ -51,0 +51,0 @@ "peerDependencies": { |
@@ -637,3 +637,3 @@ # eslint-plugin-simple-import-sort [![Build Status][travis-badge]][travis-link] | ||
You can need [Node.js] 10 and npm 6. | ||
You need [Node.js] ~12 and npm 6. | ||
@@ -640,0 +640,0 @@ ### npm scripts |
@@ -779,3 +779,3 @@ "use strict"; | ||
itemA.isSideEffectImport && itemB.isSideEffectImport | ||
? 0 | ||
? itemA.index - itemB.index | ||
: // If one of the items is a side effect import, move it first. | ||
@@ -782,0 +782,0 @@ itemA.isSideEffectImport |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
58837