-
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.
Merge pull request #42 from mundialis/switch_to_new_mapset_changes
switch_to_new_mapset changes to enable using existing mapset
- Loading branch information
Showing
15 changed files
with
264 additions
and
184 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 |
---|---|---|
|
@@ -14,3 +14,7 @@ cover/* | |
MANIFEST | ||
|
||
*__pycache__* | ||
|
||
# linting with shared config file | ||
ruff-github-workflows.toml | ||
ruff-merged.toml |
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 |
---|---|---|
@@ -1,43 +1,47 @@ | ||
# 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"] | ||
lint.ignore = [ | ||
"A002", | ||
"ANN001", | ||
"ANN002", | ||
"ANN003", | ||
"ANN201", | ||
"B006", | ||
"BLE001", | ||
"D100", | ||
"D104", | ||
"D205", | ||
"D401", | ||
"E501", | ||
"F821", | ||
"FBT002", | ||
"FBT003", | ||
"FURB101", | ||
"I001", | ||
"INT001", | ||
"PERF401", | ||
"PLC1901", | ||
"PLR0912", | ||
"PLR0913", | ||
"PLR0914", | ||
"PLR0915", | ||
"PLR0917", | ||
"PLR2004", | ||
"PLW2901", | ||
"SIM115", | ||
"PTH103", | ||
"PTH107", | ||
"PTH109", | ||
"PTH110", | ||
"PTH112", | ||
"PTH113", | ||
"PTH118", | ||
"PTH119", | ||
"PTH123", | ||
"PTH207", | ||
"PTH208", | ||
"S101", | ||
"S113", | ||
"S404", | ||
"S603", | ||
"S604", | ||
"S605", | ||
] |
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
Oops, something went wrong.