https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Tip revision: fcad86fb8c499e789e5b1037dce9efa34695f826 authored by Garrett 'Karto' Keating on 18 March 2025, 21:01:24 UTC
Adding tool to group data with tols
Adding tool to group data with tols
Tip revision: fcad86f
.pre-commit-config.yaml
exclude: '(^docs/conf.py|^docs/references/|^src/pyuvdata/data/|^src/pyuvdata/uvdata/src/|.codecov.yml)'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
- id: check-ast
- id: check-json
- id: check-merge-conflict
- id: check-xml
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: mixed-line-ending
args: ['--fix=no']
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.4
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/PyCQA/bandit
rev: 1.8.6
hooks:
- id: bandit
args: [--skip, "B101", --recursive, pyuvdata]
