tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

.pre-commit-config.yaml (595B)


      1 ---
      2 ci:
      3  autoupdate_schedule: monthly
      4 
      5 repos:
      6  - repo: https://github.com/psf/black
      7    rev: 23.12.1
      8    hooks:
      9      - id: black
     10 
     11  - repo: https://github.com/astral-sh/ruff-pre-commit
     12    rev: v0.1.9
     13    hooks:
     14      - id: ruff
     15        args: [--fix, --exit-non-zero-on-fix]
     16 
     17  - repo: https://github.com/econchick/interrogate
     18    rev: 1.5.0
     19    hooks:
     20      - id: interrogate
     21        args: [tests]
     22 
     23  - repo: https://github.com/pre-commit/pre-commit-hooks
     24    rev: v4.5.0
     25    hooks:
     26      - id: trailing-whitespace
     27      - id: end-of-file-fixer
     28      - id: check-toml
     29      - id: check-yaml