Skip to content

Commit

Permalink
fix: 린트 룰 임시 비활성화 (#ATR-606)
Browse files Browse the repository at this point in the history
  • Loading branch information
LC-02s committed Sep 23, 2024
1 parent 497f144 commit 8ccf123
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/service/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ module.exports = {
some: ['nesting', 'id'],
},
],
'@typescript-eslint/naming-convention': 'off',
},
settings: {
'import/resolver': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ export interface SettingForm {
occupation: string
}

export type CheckFormDataWithNull = {
[K in Exclude<keyof SettingForm, 'isNicknameChecked'>]: SettingForm[K] | null
export interface CheckFormDataWithNull {
nickname: string | null
interest: NewsletterCategory[] | null
userExpiration: number | null
occupation: string | null
}

export type CheckFormDataWithoutNullType = Partial<
Expand Down

0 comments on commit 8ccf123

Please sign in to comment.