update black formatter

This commit is contained in:
Sina Atalay 2024-02-02 18:02:30 +01:00
parent be046d2e40
commit 605697c089
1 changed files with 4 additions and 3 deletions

View File

@ -105,7 +105,7 @@ testing = ["coverage==7.4.0", "pytest==7.4.4", "time-machine==2.13.0"]
# Ruff is a linter (a tool to flag stylistic errors, bugs, suspicious constructs, etc.) # Ruff is a linter (a tool to flag stylistic errors, bugs, suspicious constructs, etc.)
# Black is a code formatter. # Black is a code formatter.
development = ["ruff==0.1.13", "black==23.12.1"] development = ["ruff==0.1.13", "black==24.1.1"]
# RenderCV uses different tools to check the code quality, format the code, build the # RenderCV uses different tools to check the code quality, format the code, build the
@ -116,7 +116,8 @@ development = ["ruff==0.1.13", "black==23.12.1"]
[tool.black] [tool.black]
line-length = 88 # The maximum line length line-length = 88 # The maximum line length
experimental_string_processing = true preview = true
enable-unstable-feature = ["string_processing"]
[tool.coverage.run] [tool.coverage.run]
source = ['rendercv'] source = ['rendercv']