Conversation
Add formatting and linting setup for the /website directory: - .prettierrc with standard defaults - eslint.config.js using flat config format - Updated package.json with format/lint scripts Fixes kakao#24
|
@csbiy Thanks for the PR — appreciate the quick contribution! For future issues, we usually ask contributors to comment “I’d like to take this” before starting, to avoid duplicate work. No worries this time. I’ll review the code and follow up with feedback.
We’ll also update the contributing guide to make this flow clearer. |
|
No worries at all, and thanks for being proactive! I’ll review the PR shortly. @csbiy |
|
Overall, this looks like a clean and solid baseline. A follow-up PR to apply this will be opened shortly. Thanks for the contribution. @csbiy |
Closes #24
Added ESLint and Prettier setup for the
/websitedirectory.Changes
.prettierrc- basic formatting rules (semicolons, single quotes, etc)eslint.config.js- flat config with typescript-eslint, usesglobalspackage for node/browser envpackage.json- added lint/format scripts and devDependenciesScripts added
Tested locally, lint passes after fixing the globals issue (was getting "process is not defined" errors before adding the globals package).