diff --git a/src/auth/auth.controller.ts b/src/auth/auth.controller.ts index f7ae131..821a94c 100644 --- a/src/auth/auth.controller.ts +++ b/src/auth/auth.controller.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ import { Controller, Get, Post, Request, UseGuards } from '@nestjs/common' import { AuthService } from './auth.service' import { JwtAuthGuard } from './guards/jwt.authguard' diff --git a/src/auth/auth.module.ts b/src/auth/auth.module.ts index dadfac5..4845727 100644 --- a/src/auth/auth.module.ts +++ b/src/auth/auth.module.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ //참고 : https://velog.io/@junguksim/NestJS-노트-3-Authentication // https://docs.nestjs.com/security/authorization diff --git a/src/auth/auth.service.ts b/src/auth/auth.service.ts index 6782a8d..15b14a0 100644 --- a/src/auth/auth.service.ts +++ b/src/auth/auth.service.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ import { Injectable } from '@nestjs/common' import { JwtService } from '@nestjs/jwt' import { UserService } from '../user/user.service' diff --git a/src/main.ts b/src/main.ts index d170af7..99cd9b9 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ import { HttpException, HttpStatus } from '@nestjs/common' import { NestFactory } from '@nestjs/core' import { AppModule } from './app.module' diff --git a/src/user/user.controller.ts b/src/user/user.controller.ts index 8b1d7a0..ab0f78c 100644 --- a/src/user/user.controller.ts +++ b/src/user/user.controller.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ import { Body, Controller, diff --git a/src/user/user.module.ts b/src/user/user.module.ts index d6b8190..738ad21 100644 --- a/src/user/user.module.ts +++ b/src/user/user.module.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ import { Module } from '@nestjs/common' import { PrismaService } from '../prisma.service' import { UserService } from './user.service' diff --git a/src/user/user.service.ts b/src/user/user.service.ts index 7bdf1fd..444cfcd 100644 --- a/src/user/user.service.ts +++ b/src/user/user.service.ts @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ import { Injectable } from '@nestjs/common' import { Prisma, User } from '@prisma/client' import { PrismaService } from '../prisma.service'