-
Notifications
You must be signed in to change notification settings - Fork 1
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
8 changed files
with
145 additions
and
35 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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
[build-system] | ||
requires = ["maturin>=1.0,<2.0"] | ||
requires = ["maturin>=1.2,<2.0"] | ||
build-backend = "maturin" | ||
|
||
[project] | ||
name = "regress" | ||
description = "Python bindings to Rust's regress ECMA regular expressions library" | ||
requires-python = ">=3.9" | ||
readme = "README.rst" | ||
license = {text = "MIT"} | ||
requires-python = ">=3.8" | ||
keywords = ["regex", "rust", "javascript", "ecmascript", "regular expressions"] | ||
authors = [ | ||
{ name = "Julian Berman", email = "[email protected]" }, | ||
|
@@ -37,11 +35,78 @@ Funding = "https://github.com/sponsors/Julian" | |
Source = "https://github.com/crate-py/regress" | ||
Upstream = "https://github.com/ridiculousfish/regress" | ||
|
||
[tool.isort] | ||
combine_as_imports = true | ||
from_first = true | ||
include_trailing_comma = true | ||
multi_line_output = 3 | ||
|
||
[tool.maturin] | ||
features = ["pyo3/extension-module"] | ||
|
||
[tool.pyright] | ||
reportUnnecessaryTypeIgnoreComment = true | ||
strict = ["**/*"] | ||
exclude = [ | ||
"**/tests/__init__.py", | ||
"**/tests/test_*.py", | ||
] | ||
|
||
[tool.ruff] | ||
line-length = 79 | ||
|
||
[tool.ruff.lint] | ||
select = ["ALL"] | ||
ignore = [ | ||
"A001", # It's fine to shadow builtins | ||
"A002", | ||
"A003", | ||
"ARG", # This is all wrong whenever an interface is involved | ||
"ANN", # Just let the type checker do this | ||
"B006", # Mutable arguments require care but are OK if you don't abuse them | ||
"B008", # It's totally OK to call functions for default arguments. | ||
"B904", # raise SomeException(...) is fine. | ||
"B905", # No need for explicit strict, this is simply zip's default behavior | ||
"C408", # Calling dict is fine when it saves quoting the keys | ||
"C901", # Not really something to focus on | ||
"D105", # It's fine to not have docstrings for magic methods. | ||
"D107", # __init__ especially doesn't need a docstring | ||
"D200", # This rule makes diffs uglier when expanding docstrings | ||
"D203", # No blank lines before docstrings. | ||
"D212", # Start docstrings on the second line. | ||
"D400", # This rule misses sassy docstrings ending with ! or ? | ||
"D401", # This rule is too flaky. | ||
"D406", # Section headers should end with a colon not a newline | ||
"D407", # Underlines aren't needed | ||
"D412", # Plz spaces after section headers | ||
"EM101", # These don't bother me, it's fine there's some duplication. | ||
"EM102", | ||
"FBT", # It's worth avoiding boolean args but I don't care to enforce it | ||
"FIX", # Yes thanks, if I could it wouldn't be there | ||
"N", # These naming rules are silly | ||
"PLR0912", # These metrics are fine to be aware of but not to enforce | ||
"PLR0913", | ||
"PLR0915", | ||
"PLW2901", # Shadowing for loop variables is occasionally fine. | ||
"PT006", # pytest parametrize takes strings as well | ||
"PYI025", # wat, I'm not confused, thanks. | ||
"RET502", # Returning None implicitly is fine | ||
"RET503", | ||
"RET505", # These push you to use `if` instead of `elif`, but for no reason | ||
"RET506", | ||
"RSE102", # Ha, what, who even knew you could leave the parens off. But no. | ||
"SIM300", # Not sure what heuristic this uses, but it's easily incorrect | ||
"SLF001", # Private usage within this package itself is fine | ||
"TD", # These TODO style rules are also silly | ||
"UP007", # We support 3.9 | ||
] | ||
|
||
[tool.ruff.lint.flake8-pytest-style] | ||
mark-parentheses = false | ||
|
||
[tool.ruff.lint.flake8-quotes] | ||
docstring-quotes = "double" | ||
|
||
[tool.ruff.lint.isort] | ||
combine-as-imports = true | ||
from-first = true | ||
known-first-party = ["regress"] | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
"noxfile.py" = ["ANN", "D100", "S101", "T201"] | ||
"docs/*" = ["ANN", "D", "INP001"] | ||
"tests/*" = ["ANN", "B018", "D", "PLR", "RUF012", "S", "SIM", "TRY"] |
Empty file.
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 +1,2 @@ | ||
file:. | ||
pytest |
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,14 +1,12 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile tests/requirements.in | ||
# | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile --output-file /Users/julian/Development/regress/tests/requirements.txt tests/requirements.in | ||
iniconfig==2.0.0 | ||
# via pytest | ||
packaging==23.2 | ||
packaging==24.1 | ||
# via pytest | ||
pluggy==1.3.0 | ||
pluggy==1.5.0 | ||
# via pytest | ||
pytest==7.4.3 | ||
pytest==8.3.3 | ||
# via -r tests/requirements.in | ||
file:. | ||
# via -r tests/requirements.in |
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