Skip to content

Commit

Permalink
Merge pull request #73 from daikitag/naming
Browse files Browse the repository at this point in the history
CODE: Function names
  • Loading branch information
jeromekelleher authored Aug 22, 2023
2 parents 3df3922 + 2423c32 commit 6acdc9b
Show file tree
Hide file tree
Showing 10 changed files with 105 additions and 566 deletions.
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
# pre-commit run --all-files
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: debug-statements
- id: mixed-line-ending
- id: check-case-conflict
- id: check-yaml
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
rev: v3.10.0
hooks:
- id: reorder-python-imports
args: [--application-directories=python,
]
- repo: https://github.com/asottile/pyupgrade
rev: v3.2.2
rev: v3.10.1
hooks:
- id: pyupgrade
args: [--py3-plus, --py37-plus]
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.7.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
rev: 6.1.0
hooks:
- id: flake8
args: [--config=.flake8]
additional_dependencies: ["flake8-bugbear==22.10.27", "flake8-builtins==2.0.1"]
- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
- repo: https://github.com/adamchainz/blacken-docs
rev: 1.16.0
hooks:
- id: blacken-docs
args: [--skip-errors]
additional_dependencies: [black==22.3.0]
additional_dependencies: [black==23.7.0]
language_version: python3
Loading

0 comments on commit 6acdc9b

Please sign in to comment.