Skip to content

Commit

Permalink
chore: add basic pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Jan 10, 2025
1 parent 8dc21bb commit 6ae26d7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[project]
name = "python-social-auth-examples"
requires-python = ">=3.11"
version = "2025.0"

[tool.ruff.lint]
ignore = [
"COM", # CONFIG: No trailing commas
"D203", # CONFIG: incompatible with D211
"D212", # CONFIG: incompatible with D213
"E501", # WONTFIX: we accept long strings (rest is formatted by ruff)
'ISC001', # CONFIG: formatter
"T201", # CONFIG: print is used
"S603", # CONFIG: subprocess is being used
"S607", # CONFIG: subprocess executes system tools
"ANN", # TODO: missing type annotations
"N", # TODO: wrong naming conventions
"PTH", # TODO: not using pathlib
"D" # TODO: missing documentation

]
select = ["ALL"]

0 comments on commit 6ae26d7

Please sign in to comment.