@talismn/util 0.0.0-pr707-20230419043325 → 0.0.0-pr707-20230419094832

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,9 +1,10 @@
1
1
  # @talismn/util
2
2
 
3
- ## 0.0.0-pr707-20230419043325
3
+ ## 0.0.0-pr707-20230419094832
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - f7aca48b: eslint rules
7
8
  - 01bf239b: feat: crowdloan and nom pool balances
8
9
  - 01bf239b: fix: packages publishing with incorrect interdependency versions
9
10
 
@@ -66,6 +66,7 @@ function decodeAnyAddress(encoded, ignoreChecksum, ss58Format) {
66
66
  */
67
67
  function Deferred() {
68
68
  let resolve;
69
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
69
70
  let reject;
70
71
  let isPending = true;
71
72
  let isResolved = false;
@@ -66,6 +66,7 @@ function decodeAnyAddress(encoded, ignoreChecksum, ss58Format) {
66
66
  */
67
67
  function Deferred() {
68
68
  let resolve;
69
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
69
70
  let reject;
70
71
  let isPending = true;
71
72
  let isResolved = false;
@@ -58,6 +58,7 @@ function decodeAnyAddress(encoded, ignoreChecksum, ss58Format) {
58
58
  */
59
59
  function Deferred() {
60
60
  let resolve;
61
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
61
62
  let reject;
62
63
  let isPending = true;
63
64
  let isResolved = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talismn/util",
3
- "version": "0.0.0-pr707-20230419043325",
3
+ "version": "0.0.0-pr707-20230419094832",
4
4
  "author": "Talisman",
5
5
  "homepage": "https://talisman.xyz",
6
6
  "license": "UNLICENSED",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "scripts": {
24
24
  "test": "jest",
25
- "lint": "eslint . --max-warnings 0",
25
+ "lint": "eslint src --max-warnings 0",
26
26
  "clean": "rm -rf dist && rm -rf .turbo rm -rf node_modules"
27
27
  },
28
28
  "dependencies": {
@@ -32,7 +32,7 @@
32
32
  "@polkadot/keyring": "^11.1.1",
33
33
  "@polkadot/util": "^11.1.1",
34
34
  "@polkadot/util-crypto": "^11.1.1",
35
- "@talismn/eslint-config": "0.0.1",
35
+ "@talismn/eslint-config": "0.0.0-pr707-20230419094832",
36
36
  "@talismn/tsconfig": "0.0.2",
37
37
  "@types/jest": "^27.5.1",
38
38
  "eslint": "^8.4.0",