-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocstringinator.yaml
More file actions
48 lines (45 loc) · 897 Bytes
/
docstringinator.yaml
File metadata and controls
48 lines (45 loc) · 897 Bytes
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
llm:
provider: "ollama"
model: "qwen2.5-coder:14b"
base_url: "http://localhost:11434"
temperature: 0.1
timeout: 30
format:
style: "google"
include_examples: true
include_type_hints: true
max_line_length: 88
include_raises: true
include_returns: true
processing:
dry_run: false
backup_files: false
max_file_size: 1000000
exclude_patterns:
- "*/tests/*"
- "*/migrations/*"
- "*/venv/*"
- "*/.venv/*"
- "*/.git/*"
- "*/.github/*"
- "*/.vscode/*"
- "*/.idea/*"
- "*/.pytest_cache/*"
- "*/.mypy_cache/*"
- "*/.ruff_cache/*"
- "*/.coverage/*"
- "*/.tox/*"
- "*/.eggs/*"
- "*/.eggs-info/*"
- "*/__pycache__/*"
- "*/build/*"
- "*/dist/*"
- "*/node_modules/*"
- "*/.*/*"
include_patterns:
- "*.py"
output:
verbose: true
show_diff: true
create_backup: false
output_format: "text"