Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: waveform collisions updates #8

Merged
merged 6 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,40 @@ This will start a local server and automatically open your default web browser a

## Formatting Code

### JavaScript, HTML, and CSS

To format all project files (HTML, CSS, JS), run:

```bash
npm run format
```

You can also check the formatting without making changes using:
To check formatting without making changes:

```bash
npm run format:check
```

### Python

For Python files, we use `tox` to manage formatting and linting. First, install tox:

```bash
pip install tox
```

To format Python files, run:

```bash
tox -e linters
```

To check Python formatting without making changes:

```bash
tox -e format-check
```

## Commit Messages

[Commitlint](https://github.com/conventional-changelog/commitlint/#what-is-commitlint) supported commit subjects list:
Expand Down
Loading
Loading