Skip to content

Commit

Permalink
update pre-commit dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jan 13, 2022
1 parent e5d6420 commit a3bb443
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ repos:

# black: Python Formatter
- repo: https://github.com/psf/black
rev: main
rev: 21.12b0
hooks:
- id: black
#language_version: python3.7

# flake8: Python PEP8 Compliance
- repo: https://gitlab.com/pycqa/flake8
rev: main
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: [
Expand All @@ -21,23 +21,23 @@ repos:

# General Text + YAML Lint
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: master
rev: v4.1.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
exclude: paper/*
exclude: ^paper/
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
args: ['--maxkb=10000']
- id: mixed-line-ending
exclude: paper/*
exclude: ^paper/
args: [--fix=lf]
- id: detect-private-key

# Markdown lint
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: master
rev: v0.30.0
hooks:
- id: markdownlint
args: [--config=.github/markdown_lint.yaml, --ignore=paper/]

0 comments on commit a3bb443

Please sign in to comment.