File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ lint.ignore = [
124
124
" RUF012" , # Mutable class attributes should be annotated with `typing.ClassVar`
125
125
" S101" , # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
126
126
" SIM102" , # sometimes it's better to nest
127
+ " TRY003" , # Avoid specifying long messages outside the exception class
127
128
# Checks for uses of isinstance/issubclass that take a tuple of types for comparison.
128
129
# Deactivated because it can make the code slow: https://github.com/astral-sh/ruff/issues/7871
129
130
" UP038" ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def get_version_from_dockerfile() -> str:
30
30
_ , _ , docker_tag = line .partition (":" )
31
31
version_str , _ , _ = docker_tag .partition ("-" )
32
32
return version_str
33
- raise RuntimeError ("Could not find version in Dockerfile" ) # noqa: TRY003
33
+ raise RuntimeError ("Could not find version in Dockerfile" )
34
34
35
35
36
36
def get_version_from_package_json () -> str :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_pyproject_toml_version():
33
33
for dependency in data ["project" ]["dependencies" ]:
34
34
if dependency .startswith ("ruff==" ):
35
35
return dependency .split ("==" )[1 ]
36
- raise RuntimeError ("Could not find version in pyproject.toml" ) # noqa: TRY003
36
+ raise RuntimeError ("Could not find version in pyproject.toml" )
37
37
38
38
39
39
def update_ruff_version (old_version , new_version ):
You can’t perform that action at this time.
0 commit comments