---
description: This file describes the TypeScript code style, formatting, and conventions for the project.
applyTo: "**/*.ts, **/*.js"
---
# Project general coding standards

## Formatting

For formatting instructions see [formatting instructions](./typescript/formatting.md).

## Code conventions

For code conventions instructions see [code conventions instructions](./typescript/code-conventions.md).

## Comments

For comments instructions see [comments instructions](./typescript/comments.md).

## Naming Conventions

For naming conventions instructions see [naming conventions instructions](./typescript/naming-conventions.md).

## Error Handling

- Use try/catch blocks for async operations
- Always log errors with contextual information
