feat: eslint 적용 및 관련 코드 일괄 수정
This commit is contained in:
@@ -1,12 +1,7 @@
|
||||
import { LogFormat } from './types.js';
|
||||
|
||||
// 로그 포맷은 기존 표시 규칙(<C>/<S>/<R> + 기호)을 그대로 유지한다.
|
||||
export const formatLogText = (
|
||||
text: string,
|
||||
format: LogFormat,
|
||||
year: number,
|
||||
month: number
|
||||
): string => {
|
||||
export const formatLogText = (text: string, format: LogFormat, year: number, month: number): string => {
|
||||
switch (format) {
|
||||
case LogFormat.RAWTEXT:
|
||||
return text;
|
||||
|
||||
Reference in New Issue
Block a user