๐Ÿ“”Code Formatting

Client-side (Vite React Application)

  • Code Formatter: Prettier

  • Configuration File: .prettierrc

  • Command: Run npm run format or yarn format to format client-side code using Prettier.

Server-side (Flask Application)

  • Code Formatter: Black

  • Configuration File: pyproject.toml

  • Command: Run black . to format server-side code using Black.

Last updated