Skip to content

Commit

Permalink
chore: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-wang0 committed Nov 25, 2024
1 parent 48b4f14 commit d0b5120
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/api/src/graphql/resolvers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { coursesResolvers } from "$graphql/resolvers/courses";
import { enrollmentHistoryResolvers } from "$graphql/resolvers/enrollment-history";
import { gradesResolvers } from "$graphql/resolvers/grades";
import { instructorsResolvers } from "$graphql/resolvers/instructors";
import { studyRoomsResolvers } from "$graphql/resolvers/study-rooms";
import { larcResolvers } from "$graphql/resolvers/larc.ts";
import { searchResolvers } from "$graphql/resolvers/search";
import { studyRoomsResolvers } from "$graphql/resolvers/study-rooms";
import { websocResolvers } from "$graphql/resolvers/websoc";
import { weekResolvers } from "$graphql/resolvers/week";
import { mergeResolvers } from "@graphql-tools/merge";
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/graphql/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { enrollmentHistorySchema } from "./enrollment-history";
import { enums } from "./enums";
import { gradesSchema } from "./grades";
import { instructorsSchema } from "./instructors";
import { studyRoomsGraphQLSchema } from "./study-rooms";
import { larcSchema } from "./larc";
import { searchSchema } from "./search";
import { studyRoomsGraphQLSchema } from "./study-rooms";
import { websocSchema } from "./websoc";
import { weekSchema } from "./week";

Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/rest/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { gradesRouter } from "./routes/grades";
import { instructorsRouter } from "./routes/instructors";
import { larcRouter } from "./routes/larc.ts";
import { pingRouter } from "./routes/ping";
import { studyRoomsRouter } from "./routes/study-rooms";
import { searchRouter } from "./routes/search";
import { studyRoomsRouter } from "./routes/study-rooms";
import { websocRouter } from "./routes/websoc";
import { weekRouter } from "./routes/week";

Expand Down
7 changes: 6 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
},
"files": {
"ignoreUnknown": false,
"ignore": ["dist/**", "**/.next/**", "**/.worker-next/**"]
"ignore": [
"dist/**",
"**/.next/**",
"**/.worker-next/**",
"**/migrations/meta/*.json"
]
},
"formatter": {
"enabled": true,
Expand Down

0 comments on commit d0b5120

Please sign in to comment.