-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.06 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
[tool.poetry]
name = "nymtech-addons"
version = "0.1.0"
description = ""
authors = ["Open Net Sàrl <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pre-commit = "^2"
ruff = "^0.1"
[tool.ruff]
line-length = 120
include = ['jwt_manager/*.py', 'revolut_connector/*.py', 'security_whitelist/*.py', 'security_whitelist_account_budget/*.py', 'security_whitelist_account_journal/*.py', 'security_whitelist_analytic_account/*.py', 'security_whitelist_analytic_tag/*.py']
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# isort
"I",
# bandit
"S",
]
ignore = [
"E501",
"E741",
"E731",
"S602",
"S607",
"S608",
"S107",
"S101",
"S113",
"S701",
"S105",
]
ignore-init-module-imports = true
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"