Skip to content

Development

github-actions[bot] edited this page Jun 12, 2026 · 6 revisions

👷 Development

🚧 Formatting and linting

Firmware

Clang-format is being used for all C/C++ code.

Tools and scripts

Ruff is being used for all Python code.

Webapp

Biome is being used for linting and formatting of Typescript files.

cd webapp
npm install

Check all files:

cd webapp
npm biome check

Reformat 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>

Clone this wiki locally