-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
77 lines (71 loc) · 1.29 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "pandoc-minted"
version = "1.0.0"
description = "A pandoc filter to use minted for typesetting code in the LaTeX mode."
authors = ["Yury Bayda <[email protected]>"]
license = "MIT License"
readme = "README.md"
packages = [{include = "pandoc_minted"}]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.3"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E", "W",
# pydocstyle
"D2", "D3", "D4",
# isort
"I",
# pep8-naming
"N",
# pyupgrade
"UP",
# flake8-2020
"YTT",
# flake8-async
"ASYNC",
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# flake8-executable
"EXE",
# flake8-pie
"PIE",
# flake8-pyi
"PYI",
# flake8-raise
"RSE",
# flake8-return
"RET",
# flake8-simplify
"SIM",
# flake8-type-checking
"TCH",
# mccabe
"C90",
# eradicate
"ERA",
# flynt
"FLY",
# pylint
"PLC", "PLE", "PIE",
# tidy imports
"TID",
# Perflint
"PERF",
# Ruff-specific
"RUF"
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"