From 619ae05abd14b18bfa68f59978bfcf1f7ca2e5e1 Mon Sep 17 00:00:00 2001 From: ImxYJL Date: Sat, 28 Dec 2024 19:20:10 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=ED=83=80=EC=9E=85,=20=EC=9D=B8?= =?UTF-8?q?=ED=84=B0=ED=8E=98=EC=9D=B4=EC=8A=A4=EC=9D=98=20=EC=9D=B4?= =?UTF-8?q?=EB=A6=84=EC=9D=84=20PascalCase=EB=A1=9C=20=EA=B0=95=EC=A0=9C?= =?UTF-8?q?=ED=95=98=EB=8A=94=20eslint=20=EA=B7=9C=EC=B9=99=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/.eslintrc.cjs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs index dd825e3f4..ea0dcdbdb 100644 --- a/frontend/.eslintrc.cjs +++ b/frontend/.eslintrc.cjs @@ -26,6 +26,17 @@ module.exports = { rules: { 'react/react-in-jsx-scope': 'off', 'react/no-unknown-property': ['error', { ignore: ['css'] }], + '@typescript-eslint/naming-convention': [ + 'error', + { + selector: 'interface', + format: ['PascalCase'], + }, + { + selector: 'typeAlias', + format: ['PascalCase'], + }, + ], 'import/order': [ 'error', {