Skip to content

Commit f887d80

Browse files
authored
upgrade precommit hooks (#263)
* Update pre-commit config Signed-off-by: Fabrice Normandin <[email protected]> * add missing __all__'s so Ruff doesn't break stuff Signed-off-by: Fabrice Normandin <[email protected]> --------- Signed-off-by: Fabrice Normandin <[email protected]>
1 parent facf1c5 commit f887d80

File tree

8 files changed

+103
-46
lines changed

8 files changed

+103
-46
lines changed

.pre-commit-config.yaml

+83-41
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,92 @@
1-
---
1+
default_language_version:
2+
python: python3
3+
24
repos:
35
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v2.3.0
5-
hooks:
6-
- id: check-merge-conflict
7-
- id: end-of-file-fixer
8-
- id: trailing-whitespace
9-
- repo: https://github.com/python/black
10-
rev: 22.6.0
6+
rev: v4.4.0
117
hooks:
12-
- id: black
13-
args: ["--line-length=100"]
14-
- repo: https://github.com/codespell-project/codespell
15-
rev: v2.1.0
8+
# list of supported hooks: https://pre-commit.com/hooks.html
9+
- id: trailing-whitespace
10+
require_serial: true
11+
- id: end-of-file-fixer
12+
require_serial: true
13+
# - id: check-docstring-first
14+
- id: check-yaml
15+
require_serial: true
16+
- id: debug-statements
17+
require_serial: true
18+
- id: detect-private-key
19+
require_serial: true
20+
- id: check-executables-have-shebangs
21+
require_serial: true
22+
- id: check-toml
23+
require_serial: true
24+
- id: check-case-conflict
25+
require_serial: true
26+
- id: check-added-large-files
27+
require_serial: true
28+
29+
- repo: https://github.com/charliermarsh/ruff-pre-commit
30+
# Ruff version.
31+
rev: 'v0.0.261'
1632
hooks:
17-
- id: codespell
18-
args: ["--ignore-words-list=hist,wont"]
19-
- repo: https://github.com/pycqa/flake8
20-
rev: 3.9.2
33+
- id: ruff
34+
args: ['--line-length', '99', '--fix']
35+
require_serial: true
36+
37+
# python code formatting
38+
- repo: https://github.com/psf/black
39+
rev: 22.12.0
2140
hooks:
22-
- id: flake8
23-
args:
24-
- --max-complexity=30
25-
- --max-line-length=100
26-
- --show-source
27-
- --statistics
28-
- repo: https://github.com/PyCQA/isort
29-
rev: 5.10.1
41+
- id: black
42+
args: [--line-length, "99"]
43+
require_serial: true
44+
45+
# python docstring formatting
46+
- repo: https://github.com/myint/docformatter
47+
rev: v1.5.1
3048
hooks:
31-
- id: isort
32-
args: ["--profile", "black"]
33-
- repo: https://github.com/asottile/pyupgrade
34-
rev: v2.34.0
49+
- id: docformatter
50+
args: [--in-place, --wrap-summaries=99, --wrap-descriptions=99]
51+
require_serial: true
52+
53+
# NOTE: Disabling this, since I'm having the glib-c2.29 weird bug.
54+
# # yaml formatting
55+
# - repo: https://github.com/pre-commit/mirrors-prettier
56+
# rev: v2.7.1
57+
# hooks:
58+
# - id: prettier
59+
# types: [yaml]
60+
61+
# jupyter notebook cell output clearing
62+
- repo: https://github.com/kynan/nbstripout
63+
rev: 0.6.1
3564
hooks:
36-
- id: pyupgrade
37-
args: ["--py37-plus"]
38-
- repo: https://github.com/PyCQA/autoflake
39-
rev: v1.4
65+
- id: nbstripout
66+
require_serial: true
67+
68+
69+
# md formatting
70+
- repo: https://github.com/executablebooks/mdformat
71+
rev: 0.7.16
4072
hooks:
41-
- id: autoflake
42-
args: ["--in-place", "--expand-star-imports", "--remove-all-unused-imports", "--ignore-init-module-imports"]
73+
- id: mdformat
74+
args: ["--number"]
75+
additional_dependencies:
76+
- mdformat-gfm
77+
- mdformat-tables
78+
- mdformat_frontmatter
79+
# - mdformat-toc
80+
# - mdformat-black
81+
require_serial: true
4382

44-
# BUG: Appears not to not always work properly! Enable locally if you want, but the CI will use
45-
# the tox variant for now.
46-
# - repo: https://github.com/PyCQA/doc8
47-
# rev: 0.8.1
48-
# hooks:
49-
# - id: doc8
50-
# args: ["--max-line-length=100", "--file-encoding=utf-8"]
83+
84+
# word spelling linter
85+
- repo: https://github.com/codespell-project/codespell
86+
rev: v2.2.2
87+
hooks:
88+
- id: codespell
89+
args:
90+
- --skip=logs/**,data/**
91+
# - --ignore-words-list=abc,def
92+
require_serial: true
+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
from .hparam import categorical, hparam, log_uniform, loguniform, uniform
22
from .hyperparameters import HP, HyperParameters, Point
33
from .priors import LogUniformPrior, UniformPrior
4+
5+
__all__ = [
6+
"categorical",
7+
"hparam",
8+
"log_uniform",
9+
"loguniform",
10+
"uniform",
11+
"HP",
12+
"HyperParameters",
13+
"Point",
14+
"LogUniformPrior",
15+
"UniformPrior",
16+
]

simple_parsing/wrappers/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
from .dataclass_wrapper import DataclassWrapper
22
from .field_wrapper import DashVariant, FieldWrapper
3+
4+
__all__ = ["DataclassWrapper", "FieldWrapper", "DashVariant"]

test/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
pytest.register_assert_rewrite("test.testutils")
44

55
from . import testutils # noqa: E402
6-
from .testutils import * # noqa: E402
6+
7+
__all__ = ["testutils"]

test/nesting/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
from ..testutils import *

test/nesting/test_nesting_simple.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import simple_parsing
77
from simple_parsing import ConflictResolution, field
88

9-
from . import TestSetup
9+
from ..testutils import TestSetup
1010
from .example_use_cases import HParams, RunConfig, TrainConfig
1111

1212

test/test_generation_mode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from simple_parsing.wrappers.field_wrapper import ArgumentGenerationMode, NestedMode
66

7-
from . import TestSetup
7+
from .testutils import TestSetup
88

99

1010
@dataclass

test/test_suppress.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
import shlex
33
from dataclasses import dataclass
4-
from test import raises_missing_required_arg
4+
from test.testutils import raises_missing_required_arg
55

66
from simple_parsing import ArgumentParser
77
from simple_parsing.utils import str2bool

0 commit comments

Comments
 (0)