Skip to content
Merged
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ Check this [page](https://copier.readthedocs.io/en/stable/updating/) for more sp
- python
- docker; add standard files for dockerizing a python project

## Running pre-commit

[pre-commit](https://github.com/pre-commit/pre-commit) is a framework for managing pre-commit git hooks. The pre-commit git hooks are ways to identify issues in your code before pushing your changes to the repository, for instance missing semicolons, trailing whitespace, unused dependancies.

:sparkles: pre-commit doesn't change the functionality of your code

To run pre-commit on your code, run:

```
uv run pre-commit run --all
```

## Struggling with a template?
Please report any issues you have using the template, even if some documentation is unclear or is missing!
Expand Down