Skip to content

Commit 3284e73

Browse files
authored
chore: more minor modernizations (#132)
Signed-off-by: Henry Schreiner <[email protected]>
1 parent aefabf3 commit 3284e73

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

Diff for: .github/dependabot.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "weekly"
7+
interval: "monthly"
8+
groups:
9+
actions:
10+
patterns:
11+
- "*"

Diff for: .github/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
changelog:
2+
exclude:
3+
authors:
4+
- dependabot
5+
- pre-commit-ci

Diff for: pyproject.toml

+2-5
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ files = "src"
8080
python_version = "3.8"
8181
warn_unused_configs = "true"
8282
strict = true
83-
show_error_codes = true
8483
warn_unreachable = true
8584
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
8685

@@ -90,8 +89,7 @@ ignore_missing_imports = true
9089

9190

9291
[tool.ruff.lint]
93-
select = [
94-
"E", "F", "W", # flake8
92+
extend-select = [
9593
"B", # flake8-bugbear
9694
"I", # isort
9795
"ARG", # flake8-unused-arguments
@@ -115,9 +113,8 @@ select = [
115113
"NPY", # NumPy specific rules
116114
"PD", # pandas-vet
117115
]
118-
extend-ignore = [
116+
ignore = [
119117
"PLR", # Design related pylint codes
120-
"E501", # Line too long
121118
"PT004", # Use underscore for non-returning fixture (use usefixture instead)
122119
"PT013", # Incorrect import of pytest
123120
"ISC001", # Conflicts with formatter

0 commit comments

Comments
 (0)