-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
42 lines (41 loc) · 950 Bytes
/
config.json
File metadata and controls
42 lines (41 loc) · 950 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
{
"excluded_dirs": [
".git",
"simple",
".github",
".vscode",
"modules",
"vids",
"node_modules",
"__pycache__",
"pipmodules",
"pip",
".bin",
"**/node_modules/**",
"**/node_modules/**/.bin",
"**/node_modules/**/node_modules"
],
"excluded_files": [
".env",
"files.md",
"documentation_generation.log",
"docs_generation.log",
"file_handlers.log",
"language_functions.log",
".gitignore",
"package.json",
"package-lock.json",
"README.md",
"output.md",
"docs_generation.log",
"tsconfig.json"
],
"skip_types": [
".bak",
".cmd",
".d.ts",
".ps1"
],
"project_info": "Documentation generation system that analyzes code files, extracts structure, and generates comprehensive documentation with metrics.",
"style_guidelines": "Use Google-style docstrings with comprehensive descriptions, arguments, returns, and examples."
}