https://github.com/pupil-labs/pupil
Revision 5fa8714413520cafdeb157acd35248408393ec1f authored by Pablo Prietz on 02 February 2023, 10:03:57 UTC, committed by Pablo Prietz on 02 February 2023, 10:03:57 UTC
1 parent 18c7101
Raw File
Tip revision: 5fa8714413520cafdeb157acd35248408393ec1f authored by Pablo Prietz on 02 February 2023, 10:03:57 UTC
Expose canny threshold parameter in the 2D detector menu
Tip revision: 5fa8714
.pre-commit-config.yaml
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    hooks:
      - id: trailing-whitespace
      - id: end-of-file-fixer
      - id: check-yaml
      - id: check-added-large-files
      - id: check-ast
      - id: check-toml
      - id: check-case-conflict
      - id: check-merge-conflict
      - id: check-yaml
      - id: debug-statements
      - id: mixed-line-ending

  - repo: https://github.com/psf/black
    rev: 22.12.0
    hooks:
      - id: black

  - repo: https://github.com/asottile/pyupgrade
    rev: v3.3.1
    hooks:
      - id: pyupgrade
        name: PyUpgrade 3.6+
        args: ["--py36-plus"]
        exclude: ^bin/

  - repo: https://github.com/PyCQA/isort
    rev: 5.12.0
    hooks:
      - id: isort
        args: [--profile, black]

  - repo: https://github.com/asottile/setup-cfg-fmt
    rev: v2.2.0
    hooks:
      - id: setup-cfg-fmt
back to top