Skip to content

Commit

Permalink
build(deps): updated deps for release
Browse files Browse the repository at this point in the history
  • Loading branch information
shinybrar committed Feb 28, 2022
1 parent 1557676 commit c1cf1ae
Show file tree
Hide file tree
Showing 3 changed files with 680 additions and 580 deletions.
131 changes: 70 additions & 61 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,62 +1,71 @@
repos:

- repo: https://github.com/pycqa/isort
rev: 5.5.4
hooks:
- id: isort
args: [ --multi-line=3, --trailing-comma, --force-grid-wrap=0, --use-parentheses, --line-width=88]

- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
additional_dependencies: ["flake8-eradicate==0.4.0"]
args: [--max-line-length=89]


- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
hooks:
- id: pyupgrade
args: [--py36-plus]

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

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.782
hooks:
- id: mypy
args: [--ignore-missing-imports]

- repo: https://github.com/pycqa/pydocstyle
rev: 4.0.0 # pick a git hash / tag to point to
hooks:
- id: pydocstyle
args: [--convention=numpy, --add-ignore=D104]

- repo: https://github.com/asottile/blacken-docs
rev: v1.8.0
hooks:
- id: blacken-docs
additional_dependencies: [black==20.8b1]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
exclude: ^docs/*
- id: end-of-file-fixer
exclude: ^docs/*
- id: debug-statements
- id: check-case-conflict
- id: check-json
- id: check-yaml
- id: mixed-line-ending
- id: check-toml
- id: pretty-format-json
- id: check-docstring-first
- id: check-symlinks
- id: detect-private-key
- hooks:
- args:
- --multi-line=3
- --trailing-comma
- --force-grid-wrap=0
- --use-parentheses
- --line-width=88
id: isort
repo: https://github.com/pycqa/isort
rev: 5.10.1
- hooks:
- additional_dependencies:
- flake8-eradicate==0.4.0
args:
- --max-line-length=89
id: flake8
repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
- hooks:
- args:
- --py36-plus
id: pyupgrade
repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
- hooks:
- id: black
repo: https://github.com/psf/black
rev: 22.1.0
- hooks:
- args:
- --ignore-missing-imports
id: mypy
repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
- hooks:
- args:
- --convention=numpy
- --add-ignore=D104
id: pydocstyle
repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
- hooks:
- additional_dependencies:
- black==20.8b1
id: blacken-docs
repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
- hooks:
- exclude: ^docs/*
id: trailing-whitespace
- exclude: ^docs/*
id: end-of-file-fixer
- id: debug-statements
- id: check-case-conflict
- id: check-json
- id: check-yaml
- id: mixed-line-ending
- id: check-toml
- id: pretty-format-json
- id: check-docstring-first
- id: check-symlinks
- id: detect-private-key
repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
- hooks:
- id: commitizen
stages:
- commit-msg
repo: https://github.com/commitizen-tools/commitizen
rev: v2.20.4
Loading

0 comments on commit c1cf1ae

Please sign in to comment.