From 66143eaf74dfc85c7719a41302c6421dfa461bbb Mon Sep 17 00:00:00 2001 From: Jonghyeok Park Date: Tue, 3 Mar 2026 22:01:20 +0900 Subject: [PATCH] chore: add .prettierrc for consistent code formatting The post-edit-format hook runs Prettier on JS/TS files after edits, but without a project-level config it applied default settings (double quotes, etc.) that conflicted with the existing code style. Adding .prettierrc ensures the hook respects the project conventions. Settings derived from existing codebase analysis: - singleQuote: true - trailingComma: none - arrowParens: avoid - printWidth: 200 --- .prettierrc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..a8e7ef68 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "singleQuote": true, + "trailingComma": "none", + "semi": true, + "tabWidth": 2, + "printWidth": 200, + "arrowParens": "avoid" +}