-
Notifications
You must be signed in to change notification settings - Fork 5
Development
github-actions[bot] edited this page Jun 12, 2026
·
6 revisions
Clang-format is being used for all C/C++ code.
Ruff is being used for all Python code.
Biome is being used for linting and formatting of Typescript files.
cd webapp
npm installCheck all files:
cd webapp
npm biome checkReformat or apply linter fixes to specific files:
cd webapp
npx biome format --write <./src/path/to/file>
npx biome lint --write <./src/path/to/file>