https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Raw File
Tip revision: de0f0fbc9c1e3eb691c7a2dc02d1a36d5b1a542e authored by Steven Murray on 07 March 2024, 08:33:06 UTC
docs: add updates to changelog
Tip revision: de0f0fb
.pre-commit-config.yaml
exclude: '(^docs/conf.py|^docs/references/|^pyuvdata/data/|^pyuvdata/uvdata/src/|^pyuvdata/tests/Line_Profiler_full.out|.codecov.yml)'

repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.5.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/pycqa/flake8
    rev: '7.0.0'
    hooks:
      - id: flake8
        additional_dependencies:
          - flake8-bugbear>=23.12.2
          - flake8-builtins>=2.2.0
          - flake8-comprehensions>=3.14.0
          - flake8-docstrings>=1.7.0
          # - flake8-eradicate>=1.5.0  # many false-positives
          - flake8-pytest-style>=1.7.2
          - flake8-rst-docstrings>=0.3.0
          - pep8-naming>=0.13.3

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

  - repo: https://github.com/PyCQA/bandit
    rev: 1.7.7
    hooks:
      - id: bandit
        args: [--skip, "B101", --recursive, pyuvdata]

  - repo: https://github.com/pycqa/isort
    rev: 5.13.2
    hooks:
      - id: isort
        name: isort (python)

  # Should add darglint, lots of work to address all the issues it finds!
  # - repo: https://github.com/terrencepreilly/darglint
  #   rev: master
  #   hooks:
  #   - id: darglint
back to top