forked from projectmesa/mesa
-
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.
- Loading branch information
Showing
6 changed files
with
24 additions
and
18 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
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
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
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,13 @@ | ||
[tool.ruff] | ||
# Ignore list taken from https://github.com/psf/black/blob/master/.flake8 | ||
# E203 Whitespace before ':' | ||
# E266 Too many leading '#' for block comment | ||
# E501 Line too long (82 > 79 characters) | ||
# W503 Line break occurred before a binary operator | ||
# But we don't specify them because ruff's Black already | ||
# checks for it. | ||
# See https://github.com/charliermarsh/ruff/issues/1842#issuecomment-1381210185 | ||
extend-ignore = ["E501"] | ||
extend-exclude = ["docs", "build"] | ||
# Hardcode to Python 3.10. | ||
target-version = "py310" |
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