git.delta.rocks / unique-network / refs/commits / 38c8f71dcca7

difftreelog

test add new eslint rules

Yaroslav Bolyukin2023-05-30parent: #93caa8f.patch.diff
in: master

1 file changed

modifiedtests/.eslintrc.jsondiffbeforeafterboth
86 "array-bracket-spacing": "warn",86 "array-bracket-spacing": "warn",
87 "template-curly-spacing": "warn",87 "template-curly-spacing": "warn",
88 "space-in-parens": "warn",88 "space-in-parens": "warn",
89 "arrow-body-style": ["warn", "as-needed"],
90 "no-restricted-syntax": [
91 "warn",
92 {
93 "message": "toHuman results in horrible, hard to debug conversions with no stability guarantees, use Codec/at least .toJson instead",
94 "selector": "MemberExpression > Identifier[name=\"toHuman\"]"
95 }
96 ],
89 "@typescript-eslint/naming-convention": [97 "@typescript-eslint/naming-convention": [
90 "warn",98 "warn",
91 {99 {