blob: 200bb2c81469180b7c378986df7204089839722d (
plain)
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
|
[project]
name = "crawler"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"aiohttp>=3.13.5",
]
[tool.basedpyright]
reportMissingTypeStubs=false
reportAny = false
reportExplicitAny = false
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[dependency-groups]
dev = [
"basedpyright>=1.39.1",
"ruff>=0.15.10",
]
|