Skip to content

Commit 0a04cb8

Browse files
committed
rel 2024.0.1
1 parent 4f0c714 commit 0a04cb8

File tree

10 files changed

+289
-207
lines changed

10 files changed

+289
-207
lines changed

.pre-commit-config.yaml

+31-26
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,49 @@
11
repos:
2-
- repo: https://github.com/FHPythonUtils/Blackt
3-
rev: '2022.0.3'
2+
- repo: https://github.com/astral-sh/ruff-pre-commit
3+
rev: v0.1.14
44
hooks:
5-
- id: blackt
5+
- id: ruff
6+
args: [ --fix ]
7+
8+
- repo: https://github.com/RobertCraigie/pyright-python
9+
rev: v1.1.347
10+
hooks:
11+
- id: pyright
612

7-
- repo: https://github.com/pycqa/isort
8-
rev: 5.12.0
13+
- repo: https://github.com/FHPythonUtils/Blackt
14+
rev: '2024.0.1'
915
hooks:
10-
- id: isort
16+
- id: blackt
1117

12-
- repo: https://github.com/pycqa/pylint
13-
rev: v3.0.0a6
18+
- repo: https://github.com/Lucas-C/pre-commit-hooks-safety
19+
rev: v1.3.2
1420
hooks:
15-
- id: pylint
16-
exclude: "tests/"
17-
args: [--disable=import-error,--jobs=0]
21+
- id: python-safety-dependencies-check
22+
files: pyproject.toml
1823

1924
- repo: https://github.com/pre-commit/pre-commit-hooks
20-
rev: v4.4.0
25+
rev: v4.5.0
2126
hooks:
2227
- id: trailing-whitespace
23-
exclude: "tests/"
2428
- id: end-of-file-fixer
25-
exclude: "tests/"
29+
- id: check-case-conflict
30+
- id: check-executables-have-shebangs
31+
- id: check-json
32+
- id: check-merge-conflict
33+
- id: check-shebang-scripts-are-executable
34+
- id: check-symlinks
35+
- id: check-toml
36+
- id: check-vcs-permalinks
37+
- id: check-yaml
38+
- id: detect-private-key
39+
- id: mixed-line-ending
2640

27-
- repo: https://github.com/asottile/pyupgrade
28-
rev: v3.7.0
29-
hooks:
30-
- id: pyupgrade
31-
args: [--py38-plus]
3241
- repo: https://github.com/boidolr/pre-commit-images
33-
rev: v1.2.1
42+
rev: v1.5.1
3443
hooks:
35-
- id: optimize-avif
36-
exclude: "tests/"
3744
- id: optimize-jpg
38-
exclude: "tests/"
3945
- id: optimize-png
40-
exclude: "tests/"
4146
- id: optimize-svg
42-
exclude: "tests/"
4347
- id: optimize-webp
44-
exclude: "tests/"
48+
49+
exclude: "tests/data|documentation/reference"

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All major and minor version changes will be documented in this file. Details of
44
patch-level version changes can be found in [commit messages](../../commits/master).
55

6+
## 2024.0.1 - 2021/02/03
7+
8+
- python ruff
9+
610
## 2024 - 2021/01/07
711

812
- Update deps

0 commit comments

Comments
 (0)