forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GR-49632] Disable black formatter in repository
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[tool.black] | ||
line-length = 120 | ||
# Require black version 23 for formatting. | ||
# Black's code style can change for major versions (beginning of the calendar | ||
# year), to ensure a consistent code-style, the version is fixed to a major | ||
# version. | ||
required-version = '23' | ||
# Disables the black formatter in this repository | ||
# If individual suites want to enable the formatter, they can create a | ||
# pyproject.toml with their own configuration in their suite folder | ||
force-exclude = '.*' |