-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
592d943
commit 46ce1a9
Showing
4 changed files
with
58 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
default: true | ||
MD038: false # no-space-in-code Spaces inside code span elements |
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,43 @@ | ||
# Ruff configuration file: ruff.toml | ||
|
||
# Define the required version for Ruff | ||
required-version = ">=0.7.0" | ||
|
||
line-length = 79 | ||
|
||
# Specify directories or files to be excluded from Ruff linting, in addition to default exclusions | ||
extend-exclude = [ | ||
".git", | ||
"__pycache__", | ||
".env", | ||
".venv", | ||
"env", | ||
"venv", | ||
"ENV", | ||
"env.bak", | ||
"venv.bak", | ||
"ctypes", | ||
"pydispatch", | ||
] | ||
|
||
# Uncomment the following sections as needed | ||
|
||
# [format] | ||
# Format settings for Ruff (quote-style and indent-style) | ||
# quote-style = "double" | ||
# indent-style= "tab" | ||
|
||
# [lint] | ||
# Define linting rules selection and ignore list | ||
# select = [ | ||
# "A", # flake8-builtins (A) | ||
# "COM", # flake8-commas | ||
# "PL", # Pylint | ||
# ] | ||
ignore = [ | ||
"F821", # Undefined name `_` | ||
] | ||
|
||
# [lint.per-file-ignores] | ||
# Define file-specific linting rule ignores | ||
# "lib_dop/r_dop_import_lib.py" = ["ERA001", "PLR2004"] |