Skip to content

Commit 4a01b00

Browse files
committed
feat(parser): add 'parse_numbers' argument
1 parent 756d8a2 commit 4a01b00

12 files changed

+367
-256
lines changed

.pre-commit-config.yaml

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,38 @@
11
repos:
2+
- repo: https://github.com/compilerla/conventional-pre-commit
3+
rev: v2.3.0
4+
hooks:
5+
- id: conventional-pre-commit
6+
stages: [commit-msg]
27
- repo: https://github.com/pre-commit/pre-commit-hooks
38
rev: v4.4.0
49
hooks:
5-
- id: trailing-whitespace
10+
- id: check-ast
11+
- id: check-case-conflict
12+
- id: check-merge-conflict
13+
- id: check-toml
14+
- id: debug-statements
615
- id: end-of-file-fixer
7-
- id: check-yaml
8-
- id: check-added-large-files
9-
- repo: https://github.com/pre-commit/mirrors-prettier
10-
rev: "v3.0.0-alpha.6"
11-
hooks:
12-
- id: prettier
13-
- repo: https://github.com/asottile/pyupgrade
14-
rev: v3.3.1
15-
hooks:
16-
- id: pyupgrade
17-
args: ["--py38-plus"]
18-
- repo: https://github.com/hadialqattan/pycln
19-
rev: v2.1.3
20-
hooks:
21-
- id: pycln
22-
args: [--config=pyproject.toml]
23-
- repo: https://github.com/pycqa/isort
24-
rev: 5.12.0
16+
- id: mixed-line-ending
17+
- id: trailing-whitespace
18+
- repo: https://github.com/charliermarsh/ruff-pre-commit
19+
rev: "v0.0.278"
2520
hooks:
26-
- id: isort
21+
- id: ruff
22+
args: ["--fix"]
2723
- repo: https://github.com/psf/black
28-
rev: 23.3.0
24+
rev: 23.7.0
2925
hooks:
3026
- id: black
3127
args: [--config=./pyproject.toml]
28+
- repo: https://github.com/codespell-project/codespell
29+
rev: v2.2.5
30+
hooks:
31+
- id: codespell
32+
- repo: https://github.com/pre-commit/mirrors-prettier
33+
rev: "v3.0.0"
34+
hooks:
35+
- id: prettier
3236
- repo: https://github.com/doublify/pre-commit-rust
3337
rev: v1.0
3438
hooks:

0 commit comments

Comments
 (0)