cvat/site/content/en/docs/contributing/coding-style.md

15 lines
572 B
Markdown
Raw Permalink Normal View History

2025-09-16 01:19:40 +00:00
---
title: 'Coding style'
linkTitle: 'Coding style'
weight: 4
description: 'Information about coding style that is used in CVAT development.'
---
We use the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript)
for JavaScript/TypeScript code with a little exception - we prefer 4 spaces
for indentation of nested blocks and statements.
For Python, we use [Black](https://github.com/psf/black) and
[isort](https://pycqa.github.io/isort/) to enforce the coding style and autoformat files.
You can use `dev/format_python_code.sh` to apply these formatters.