difftreelog
Merge pull request #240 from UniqueNetwork/feature/types-repo
in: master
2 files changed
tests/.eslintrc.jsondiffbeforeafterboth--- a/tests/.eslintrc.json
+++ b/tests/.eslintrc.json
@@ -64,6 +64,7 @@
"destructuring": "all"
}
],
+ "@typescript-eslint/ban-ts-comment": "off",
"object-curly-spacing": "warn",
"arrow-spacing": "warn",
"array-bracket-spacing": "warn",
tests/update_types.shdiffbeforeafterboth1#!/usr/bin/env sh23yarn polkadot-types45cd ../..6if [ ! -f unique-types-js ]; then7 git clone git@github.com:UniqueNetwork/unique-types-js.git8fi910rsync -ar --delete unique-chain/tests/src/interfaces/ unique-types-js/src/interfaces11for file in unique-types-js/src/interfaces/augment-*; do12 sed -i '1s;^;//@ts-nocheck\n;' $file13done1415cd unique-types-js16git add src/interfaces/17git commit -m "chore: regenerate types"18cd ../unique-chain/tests