Our custom ordering system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
816 B

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: check-added-large-files
- id: check-byte-order-marker
- id: check-json
- id: check-merge-conflict
- id: check-toml
- id: debug-statements
- id: detect-private-key
- repo: local
hooks:
- id: ruff-format
name: Auto formatting code with "ruff"
entry: .venv/bin/ruff format ordr3 tests
language: system
pass_filenames: false
- id: ruff
name: Linting code with "ruff"
entry: .venv/bin/ruff check ordr3 tests
language: system
pass_filenames: false
- id: pytest
name: Running tests with "pytest"
entry: .venv/bin/pytest tests
language: system
pass_filenames: false