Skip to content

Commit

Permalink
chore(deps): update dependency eslint-plugin-simple-import-sort to v6 (
Browse files Browse the repository at this point in the history
…#23)

* chore(deps): update dependency eslint-plugin-simple-import-sort to v6

* fix: update plugin setup + reorder imports/exports

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Amadej Pevec <[email protected]>
  • Loading branch information
3 people authored Nov 16, 2020
1 parent 269461f commit 43ea09d
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 22 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
}
],
"prettier/prettier": "error",
"simple-import-sort/sort": "error"
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
}
}
12 changes: 6 additions & 6 deletions .pnp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-simple-import-sort": "^6.0.0",
"jest": "^26.4.1",
"jest-extended": "^0.11.5",
"nock": "^13.0.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/guardian-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-simple-import-sort": "^6.0.0",
"got": "^11.5.2",
"jest": "^26.4.0",
"jest-extended": "^0.11.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/guardian-api/src/resources/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./users";
export * from "./groups";
export * from "./configurations";
export * from "./groups";
export * from "./users";
2 changes: 1 addition & 1 deletion packages/guardian-crypto/src/builders/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "./guardian-user-permissions";
export * from "./guardian-group-permissions";
export * from "./guardian-user-permissions";
2 changes: 1 addition & 1 deletion packages/guardian-crypto/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ import * as Enums from "./enums";
import * as Interfaces from "./interfaces";
import * as Transactions from "./transactions";

export { ARKCrypto, Builders, Transactions, Interfaces, Enums, Defaults };
export { ARKCrypto, Builders, Defaults, Enums, Interfaces, Transactions };
2 changes: 1 addition & 1 deletion packages/guardian-crypto/src/transactions/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "./guardian-user-permissions";
export * from "./guardian-group-permissions";
export * from "./guardian-user-permissions";
2 changes: 1 addition & 1 deletion packages/guardian-transactions/src/handlers/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "./guardian-user-permissions";
export * from "./guardian-group-permissions";
export * from "./guardian-user-permissions";
2 changes: 1 addition & 1 deletion packages/guardian-transactions/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import * as Interfaces from "./interfaces";
import * as Indexers from "./wallet-indexes";
export * from "./service-provider";

export { Handlers, Defaults, Interfaces, Indexers, Errors };
export { Defaults, Errors, Handlers, Indexers, Interfaces };
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2288,7 +2288,7 @@ __metadata:
eslint-config-prettier: ^6.11.0
eslint-plugin-jest: ^23.8.2
eslint-plugin-prettier: ^3.1.2
eslint-plugin-simple-import-sort: ^5.0.2
eslint-plugin-simple-import-sort: ^6.0.0
got: ^11.5.2
jest: ^26.4.0
jest-extended: ^0.11.5
Expand Down Expand Up @@ -2400,7 +2400,7 @@ __metadata:
eslint-config-prettier: ^6.11.0
eslint-plugin-jest: ^23.20.0
eslint-plugin-prettier: ^3.1.4
eslint-plugin-simple-import-sort: ^5.0.3
eslint-plugin-simple-import-sort: ^6.0.0
jest: ^26.4.1
jest-extended: ^0.11.5
nock: ^13.0.4
Expand Down Expand Up @@ -5713,12 +5713,12 @@ __metadata:
languageName: node
linkType: hard

"eslint-plugin-simple-import-sort@npm:^5.0.2, eslint-plugin-simple-import-sort@npm:^5.0.3":
version: 5.0.3
resolution: "eslint-plugin-simple-import-sort@npm:5.0.3"
"eslint-plugin-simple-import-sort@npm:^6.0.0":
version: 6.0.0
resolution: "eslint-plugin-simple-import-sort@npm:6.0.0"
peerDependencies:
eslint: ">=5.0.0"
checksum: 75bd43970b6f2b92967eef34d6972ac136980cb8eab2ddcb16ec16efe8a3ecf5a0db207581c23bd141c0597258835958b66da1d8db961c721114ecd7204d167a
checksum: 7e427db9a20816cd9071e5ed8bf64cc9bb6e9a4f8e8dccca76b5cbdbe21312879725beba4d809fbf944fcbb06a44ffbbb1f5b096d17aac5917bc2a26776b7790
languageName: node
linkType: hard

Expand Down

0 comments on commit 43ea09d

Please sign in to comment.