Skip to content

Commit

Permalink
fix: 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Jun 1, 2023
1 parent 75b8bd5 commit 7a3f729
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/rules/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
fixable: "code",
schema: [],
messages: {
isHttpBanned: "'{{ correct }}'가 맞는 표현입니다.",
isHttpBanned: "'{{ correct }}'가 맞는 표현입니다",
},
},

Expand All @@ -28,8 +28,7 @@ module.exports = {
node,
messageId: "isHttpBanned",
data: { correct },
fix: (fixer) =>
fixer.replaceText(node, text.replace(wrong, correct)), // 올바른 표현으로 교정
fix: (fixer) => fixer.replaceText(node, text.replace(wrong, correct)), // 올바른 표현으로 교정
});
}
});
Expand Down

0 comments on commit 7a3f729

Please sign in to comment.