Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OKendigelyan committed Sep 18, 2024
1 parent c0f1ff8 commit f2bf032
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
9 changes: 8 additions & 1 deletion packages/data-polling/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,12 @@ module.exports = {
parser: "@typescript-eslint/parser",
tsconfigRootDir: __dirname,
},
overrides: [{ files: ["src/index.ts"], rules: { "import/no-unused-modules": "off" } }],
overrides: [
{
files: ["*.ts", "*.tsx"],
rules: {
"import/no-unused-modules": "off",
},
},
],
};
2 changes: 1 addition & 1 deletion packages/data-polling/src/useDataPolling.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assetsActions, useAppDispatch } from "@umami/state";
import { fromUnixTime } from "date-fns";
import { max } from "lodash";
import max from "lodash/max";
import { useEffect } from "react";

import { usePollAccountStates } from "./usePollAccountStates";
Expand Down
8 changes: 8 additions & 0 deletions packages/multisig/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,12 @@ module.exports = {
parser: "@typescript-eslint/parser",
tsconfigRootDir: __dirname,
},
overrides: [
{
files: ["*.ts", "*.tsx"],
rules: {
"import/no-unused-modules": "off",
},
},
],
};
2 changes: 1 addition & 1 deletion packages/multisig/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ export type RawTzktMultisigBigMap = {
key: string | null;
value: {
actions: string;
approvals: string[];
approvals?: string[];
} | null;
};

1 comment on commit f2bf032

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Title Lines Statements Branches Functions
apps/desktop Coverage: 83%
83.63% (1758/2102) 78.64% (825/1049) 78.45% (448/571)
apps/web Coverage: 83%
83.63% (1758/2102) 78.64% (825/1049) 78.45% (448/571)
packages/components Coverage: 97%
97.1% (134/138) 96.49% (55/57) 82.92% (34/41)
packages/core Coverage: 82%
82.89% (223/269) 73.18% (101/138) 81.35% (48/59)
packages/crypto Coverage: 100%
100% (28/28) 100% (3/3) 100% (5/5)
packages/data-polling Coverage: 97%
95.27% (141/148) 87.5% (21/24) 92.85% (39/42)
packages/multisig Coverage: 98%
98.47% (129/131) 85.71% (18/21) 100% (35/35)
packages/social-auth Coverage: 100%
100% (21/21) 100% (11/11) 100% (3/3)
packages/state Coverage: 85%
84.59% (791/935) 80.97% (166/205) 78.72% (296/376)
packages/tezos Coverage: 86%
85.57% (89/104) 89.47% (17/19) 82.75% (24/29)
packages/tzkt Coverage: 86%
84.05% (58/69) 81.25% (13/16) 76.92% (30/39)

Please sign in to comment.