Skip to content
Snippets Groups Projects
Select Git revision
  • 0402a140a5541bb5253d94daf03d0df97e5a48da
  • main default protected
  • 3D_UNet
  • notebooksv1
  • scaleZYX_mean
  • notebooks
  • convert_tiff_folders
  • test
  • notebook_update
  • threshold-exploration
  • optimize_scaleZYXdask
  • layered_surface_segmentation
  • conv_zarr_tiff_folders
  • 3d_watershed
  • tr_val_te_splits
  • save_files_function
  • memmap_txrm
  • v0.4.1
  • v0.4.0
  • v0.3.9
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
  • v0.2.0
25 results

.pre-commit-config.yaml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .pre-commit-config.yaml 630 B
    # See https://pre-commit.com for more information
    # See https://pre-commit.com/hooks.html for more hooks
    repos:
    -   repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v3.2.0
        hooks:
        -   id: detect-private-key
        -   id: check-added-large-files
        -   id: check-docstring-first
        -   id: debug-statements
        -   id: double-quote-string-fixer
        -   id: name-tests-test
    
    -   repo: https://github.com/astral-sh/ruff-pre-commit
        rev: v0.4.7
        hooks:
          # Run the formatter and fix code styling
        - id: ruff-format
    
        # Run the linter and fix what is possible
        - id: ruff
          args: ['--fix']