Revision f47a92088a16a0f4fd7ca66acdd847d3ebc60e42 authored by Jerome Kelleher on 03 March 2021, 12:43:15 UTC, committed by GitHub on 03 March 2021, 12:43:15 UTC
Make newick import optional for conda package.
2 parent s 848c9cc + 1ee6d0a
Raw File
.pre-commit-config.yaml
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v3.2.0
    hooks:
      - id: check-merge-conflict
      - id: debug-statements
      - id: mixed-line-ending
      - id: check-case-conflict
      - id: check-yaml
  - repo: https://github.com/benjeffery/pre-commit-clang-format
    rev: master
    hooks:
    - id: clang-format
      exclude: argtable3
      verbose: true
  - repo: https://github.com/asottile/reorder_python_imports
    rev: v2.3.5
    hooks:
      - id: reorder-python-imports
        args: [--unclassifiable-application-module=_msprime]
  - repo: https://github.com/asottile/pyupgrade
    rev: v2.7.2
    hooks:
      - id: pyupgrade
        args: [--py3-plus, --py36-plus]
  - repo: https://github.com/psf/black
    rev: 20.8b1
    hooks:
      - id: black
        language_version: python3
  - repo: https://gitlab.com/pycqa/flake8
    rev: 3.8.3
    hooks:
      - id: flake8
        args: [--config=.flake8]
        additional_dependencies: ["flake8-bugbear==20.1.4", "flake8-builtins==1.5.3"]
back to top