Skip to content

Commit

Permalink
test: ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed May 9, 2024
1 parent e37bd78 commit c7fd3f4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@
"rules": {
"react-refresh/only-export-components": [
"warn",

{
"allowConstantExport": true
}
],
"react/jsx-pascal-case": "warn"

"no-unused-vars": "warn",
"react/jsx-pascal-case": "warn"
}
}
1 change: 1 addition & 0 deletions src/api/auth/auth.patch.api.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/* 비밀번호 재설정 */
const a = 0;
1 change: 0 additions & 1 deletion src/api/request.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { AxiosRequestConfig, InternalAxiosRequestConfig } from 'axios';

import { instance } from './instance';
Expand Down
1 change: 0 additions & 1 deletion src/utils/cookies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const setCookie = (name: string, value: string, options?: CookieSetOption
};

export const getCookie = (name: string, options?: CookieGetOptions) => {
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return cookies.get(name, options);
};

Expand Down
1 change: 0 additions & 1 deletion src/utils/logOnDev.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
function logOnDev(message: string) {
if (process.env.NODE_ENV === 'development') {
// eslint-disable-next-line
console.log(message);
}
}
Expand Down

0 comments on commit c7fd3f4

Please sign in to comment.