Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Dec 17, 2024
1 parent ef7a221 commit 3aae2a4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion backend/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const DB_PWD = encodeURIComponent(process.env.POSTGRES_PASSWORD || "default"); /
const DB_PORT = process.env.POSTGRES_PORT || 5432;
const DB_NAME = process.env.POSTGRES_DATABASE || "postgres";
const DB_SCHEMA = process.env.DB_SCHEMA || "users";
const dataSourceURL = `postgresql://${DB_USER}:${DB_PWD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?schema=${DB_SCHEMA}&connection_limit=5`;
function getMiddlewares() {
if (process.env.PRISMA_LOGGING) {
return [
Expand Down
1 change: 0 additions & 1 deletion backend/src/middleware/req.res.logger.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Logger } from "@nestjs/common";

describe("HTTPLoggerMiddleware", () => {
let middleware: HTTPLoggerMiddleware;
let logger: Logger;

beforeEach(async () => {
const module = await Test.createTestingModule({
Expand Down

0 comments on commit 3aae2a4

Please sign in to comment.