File: .justfile

package info (click to toggle)
python-evtx 8.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,916 kB
  • sloc: python: 3,074; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 447 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
isort:
    uvx isort --length-sort --profile black --line-length 120 Evtx/ tests/ scripts/

black:
    uvx black --line-length 120 Evtx/ tests/ scripts/

ruff:
    uvx ruff check --line-length 120 Evtx/ tests/ scripts/

mypy:
    uvx mypy --check-untyped-defs --ignore-missing-imports Evtx/ tests/ scripts/

lint:
    -just isort
    -just black
    -just ruff
    # this doesn't pass cleanly today
    #-just mypy

test:
    uv run pytest tests/