Skip to content

Commit 707bd54

Browse files
committed
2021 so far
1 parent b158c8d commit 707bd54

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+6003
-25
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
__pycache__
44
/.mypy_cache
55
/.coverage
6+
/venv
7+
.pytest_cache

.pre-commit-config.yaml

+11-21
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
33
default_language_version:
4-
python: python3.7
4+
python: python3.9
55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v2.4.0
7+
rev: v4.0.1
88
hooks:
99
- id: check-added-large-files
1010
- id: check-ast
@@ -20,42 +20,32 @@ repos:
2020
- id: debug-statements
2121
- id: double-quote-string-fixer
2222
- id: end-of-file-fixer
23-
- id: flake8
24-
additional_dependencies:
25-
- flake8-bugbear
26-
- flake8-builtins
27-
- flake8-comprehensions
28-
- flake8-mutable
2923
- id: mixed-line-ending
3024
- id: trailing-whitespace
25+
- repo: https://github.com/Lucas-C/pre-commit-hooks
26+
rev: v1.1.10
27+
hooks:
28+
- id: remove-tabs
3129
- repo: https://github.com/pre-commit/mirrors-mypy
32-
rev: v0.740
30+
rev: v0.910-1
3331
hooks:
3432
- id: mypy
35-
- repo: https://github.com/pre-commit/pygrep-hooks
36-
rev: v1.4.2
37-
hooks:
38-
- id: python-check-blanket-noqa
39-
- id: python-check-mock-methods
40-
- id: python-no-eval
41-
- id: python-no-log-warn
42-
- id: python-use-type-annotations
4333
- repo: https://github.com/asottile/add-trailing-comma
44-
rev: v1.5.0
34+
rev: v2.2.1
4535
hooks:
4636
- id: add-trailing-comma
4737
args: [--py36-plus]
4838
- repo: https://github.com/asottile/pyupgrade
49-
rev: v1.25.1
39+
rev: v2.29.1
5040
hooks:
5141
- id: pyupgrade
5242
args: [--py37-plus]
5343
- repo: https://github.com/asottile/reorder_python_imports
54-
rev: v1.8.0
44+
rev: v2.6.0
5545
hooks:
5646
- id: reorder-python-imports
5747
args: [--py37-plus]
5848
- repo: https://github.com/asottile/yesqa
59-
rev: v0.0.11
49+
rev: v1.3.0
6050
hooks:
6151
- id: yesqa

2021/day_01/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)