Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
fix: kebab case
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Nov 26, 2023
1 parent d83f8c5 commit 5e22ebb
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/handlers/comment/handlers/issue/evaluate-comments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Decimal from "decimal.js";

import { Context } from "../../../../types/context";
import { Comment, Issue, User } from "../../../../types/payload";
import { allCommentScoring } from "./allCommentScoring";
import { allCommentScoring } from "./all-comment-scoring";
import { CommentScoring } from "./comment-scoring-rubric";
import { ContributorView } from "./contribution-style-types";
import { UserScoreDetails } from "./issue-shared-types";
Expand Down
4 changes: 2 additions & 2 deletions src/handlers/comment/handlers/issue/specification-scoring.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import Decimal from "decimal.js";

import { Comment, Issue } from "../../../../types/payload";
import { allCommentScoring } from "./allCommentScoring";
import { allCommentScoring } from "./all-comment-scoring";
import { UserScoreDetails } from "./issue-shared-types";
import { addRelevanceAndFormatScoring } from "./relevance-format-scoring";

// import Runtime from "../../../../bindings/bot-runtime";
import { ContributorView } from "./contribution-style-types";
import { Context } from "../../../../types/context";
import { ContributorView } from "./contribution-style-types";

export type ContextIssue = { context: Context; issue: Issue };

Expand Down

0 comments on commit 5e22ebb

Please sign in to comment.