forked from HKUDS/DeepTutor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
158 lines (145 loc) · 4.49 KB
/
pyproject.toml
File metadata and controls
158 lines (145 loc) · 4.49 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Python project configuration for DeepTutor
# This file configures Black, Ruff, and other Python tools
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-tutor"
version = "0.1.0"
description = "An intelligent learning companion with multi-agent collaboration and RAG"
requires-python = ">=3.10"
readme = "README.md"
license = {text = "Apache-2.0"}
# ============================================
# Black code formatter configuration
# ============================================
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# Exclude directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
| __pycache__
| node_modules
| \.next
)/
'''
# ============================================
# Ruff linter and formatter configuration
# ============================================
[tool.ruff]
# Target Python version
target-version = "py310"
line-length = 100
[tool.ruff.lint]
# 只启用最基础的规则(放宽要求)
select = [
"E", # pycodestyle errors (语法错误)
"F", # pyflakes (未使用的导入、变量等)
"I", # isort (import 排序)
# 其他规则都忽略,不强制要求
]
# Ignore specific rules (放宽检查,只保留重要规则)
ignore = [
"E501", # Line too long (handled by formatter)
"B008", # Do not perform function calls in argument defaults
"PLR0911", # Too many return statements
"PLR0912", # Too many branches
"PLR0913", # Too many arguments
"PLR0915", # Too many statements
"PLR2004", # Magic value used in comparison
"TRY003", # Avoid specifying long messages outside exception class
"T201", # print found (允许 print 语句,用于调试)
"E722", # Do not use bare except (某些情况下需要)
"E402", # Module level import not at top of file (某些情况下需要)
"PLC0415", # import should be at top-level (某些情况下需要)
"PTH123", # open() should be replaced by Path.open() (允许使用 open)
"PTH103", # os.makedirs() should be replaced by Path.mkdir() (允许使用 os.makedirs)
"PTH118", # os.path.join() should be replaced by Path (允许使用 os.path.join)
"B904", # Within except clause, raise exceptions with raise ... from err
"EM101", # Exception must not use a string literal
"EM102", # Exception must not use an f-string literal
"TRY002", # Create your own exception
"TRY300", # Consider moving this statement to an else block
"DTZ005", # datetime.now() called without tz argument
"RET504", # Unnecessary assignment before return
"PLW2901", # for loop variable overwritten by assignment target
"F841", # Local variable assigned but never used
"ERA001", # Found commented-out code (允许注释代码)
"B006", # Do not use mutable data structures for argument defaults
]
# Exclude patterns
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
".next",
"out",
"venv",
"__pycache__",
]
# Allow autofix for all enabled rules
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
# Use double quotes for strings
quote-style = "double"
# Indent with spaces
indent-style = "space"
# Respect magic trailing comma
skip-magic-trailing-comma = false
# Automatically detect the appropriate line ending
line-ending = "auto"
# ============================================
# Ruff import sorting (isort replacement)
# ============================================
[tool.ruff.lint.isort]
known-first-party = ["src", "scripts"]
force-sort-within-sections = true
split-on-trailing-comma = true
# ============================================
# Ruff per-file-ignores
# ============================================
[tool.ruff.lint.per-file-ignores]
# Allow longer lines in test files
"**/test_*.py" = ["E501", "PLR2004"]
"**/__init__.py" = ["F401"] # Allow unused imports in __init__.py
# ============================================
# Ruff mccabe complexity
# ============================================
[tool.ruff.lint.mccabe]
max-complexity = 10