-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (74 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (74 loc) · 1.8 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
[project]
name = "money4band"
description = "Multi-app Docker orchestrator for passive income apps"
version = "4.11.9"
authors = [
{ name = "MRColorR" }
]
requires-python = ">=3.10"
dependencies = [
"colorama",
"docker",
"requests",
"pyyaml",
"psutil"
]
[dependency-groups]
dev = [
"ruff>=0.12.0",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"pytest-asyncio>=0.23.0",
]
# Tool configurations
[tool.uv]
# Optional: add uv-specific settings here
# Ruff configuration
[tool.ruff]
line-length = 88
[tool.ruff.lint]
# Enable specific linting rules:
# E - pycodestyle errors
# W - pycodestyle warnings (Omit if using formatter to avoid rules overlap)
# F - pyflakes (undefined names, unused imports)
# I - isort import sorting
# B - flake8-bugbear (likely bugs, design issues)
# UP - pyupgrade (syntax modernization)
# C4 - flake8-comprehensions
# PIE - miscellaneous lints
# TID - flake8-tidy-imports
# S - flake8-bandit (security checks)
# N - pep8-naming (naming conventions)
# T20 - flake8-print (detect print/debug)
# PL - pylint subset (advanced static analysis)
select = [
"E",
"F",
"I",
"B",
"UP",
"C4",
"PIE",
"TID",
"S",
"N",
"T20",
"PL",
]
# Ignore rules that conflict with formatter or are too strict:
# W191, E111, E114, E117 - indentation errors handled by formatter
# D206, D300 - docstring styles that can conflict
# Q000, Q001, Q002, Q003 - quote styles managed by formatter
# COM812, COM819 - trailing comma conflicts
# ISC002 - implicit string concat warnings
# T201 - print statements are needed for CLI user interaction
ignore = [
"W191", "E111", "E114", "E117",
"D206", "D300",
"Q000", "Q001", "Q002", "Q003",
"COM812", "COM819",
"ISC002",
"T201"
]
# Add other tool configurations as needed