You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yuxiang Huang edited this page Jan 11, 2026
·
5 revisions
Style Guide
Case Styles
Typescript
variableNames/functionName: camelCase
.tsx file names: PascalCase
.ts files names: camelCase
JSON
File names: kebab-case
Fields: camelCase
Python
Everything: snake_case
Constants: SCREAM_CASE
When importing from modules whose names start with an underscore, it is considered an anti‑pattern if the import is not relative within the same package, since such modules are meant to be private implementation details.