File: pyproject.toml

package info (click to toggle)
wtforms-alchemy 0.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 492 kB
  • sloc: python: 3,955; makefile: 119; sh: 11
file content (22 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tool.pytest.ini_options]
filterwarnings = [
    'error:.*:sqlalchemy.exc.SADeprecationWarning',
    'error:.*:sqlalchemy.exc.SAWarning',
    'ignore:.*:sqlalchemy.exc.SADeprecationWarning:sqlalchemy_i18n',
]

[tool.ruff]
target-version = "py39"

[tool.ruff.lint]
select = [
    "C90", # mccabe
    "E",   # pycodestyle errors
    "F",   # Pyflakes
    "I",   # isort
    "UP",  # pyupgrade
    "W",   # pycodestyle warnings
]

[tool.ruff.lint.isort]
order-by-type = false