Skip to content

Commit 93f4965

Browse files
authored
Merge pull request #7171 from fstagni/80_fixes66
fix: fixes for release notes
2 parents 9c8e4a8 + c9dbe1c commit 93f4965

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ repos:
1515
hooks:
1616
- id: trailing-whitespace
1717
- id: end-of-file-fixer
18+
exclude: |
19+
(?x)^(
20+
src/DIRAC/Core/Security/test/certs/ca/ca.key.pem
21+
)$
1822
- id: check-yaml
1923
- id: check-added-large-files
2024

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ git_describe_command = "git describe --dirty --tags --long --match *[0-9].[0-9]*
1010

1111
[tool.black]
1212
line-length = 120
13-
target-version = ['py39']
13+
target-version = ['py311']
1414

15+
[tool.isort]
16+
profile = "black"
1517

1618
[tool.mypy]
1719
allow_redefinition = true
@@ -28,6 +30,12 @@ exclude = [
2830
'/tests/'
2931
]
3032

33+
34+
[tool.ruff]
35+
select = ["E", "F", "B", "I", "PLE"]
36+
ignore = ["B905", "B008", "B006"]
37+
line-length = 120
38+
3139
[tool.pylint.basic]
3240

3341
# We mostly have CamelCase, with a few differences.
@@ -76,7 +84,7 @@ signature-mutators = []
7684
[tool.pylint.format]
7785

7886
# Maximum number of characters on a single line.
79-
max-line-length = 130
87+
max-line-length = 120
8088

8189
[tool.pylint."messages control"]
8290
disable = ["R0903","I0011","c-extension-no-member"]

release.notes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FIX: (#7158) default providerType if not found in IdProviderFactory
1010

1111
*TransformationSystem
1212

13-
NEW: (#7113)
13+
NEW: (#7113)
1414
Implement a finer grained permissions model for Transformations.
1515

1616
*DataManagementSystem

0 commit comments

Comments
 (0)