Some simple tools for working with parsed Sensospot data.
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.

29 lines
772 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: black
name: Auto formatting code with "black"
entry: black src tests
language: system
pass_filenames: false
- id: ruff
name: Linting code with "ruff"
entry: ruff src tests
language: system
pass_filenames: false
- id: pytest
name: Testing the project with "pytest"
entry: pytest tests
language: system
pass_filenames: false