-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcursor.json
More file actions
40 lines (40 loc) · 983 Bytes
/
cursor.json
File metadata and controls
40 lines (40 loc) · 983 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
{
"project": "glyphchain-cli",
"language": "python",
"style": {
"format": "pep8",
"prefer_compact_imports": true,
"quote_style": "double",
"spacing": {
"between_functions": 2,
"around_top_level_blocks": 2
}
},
"prompt": {
"ask_before_adding_dependencies": true,
"generate_comments": "always",
"docstrings": "full"
},
"modules": {
"builtin": ["argparse", "os", "json", "hashlib", "datetime", "zipfile"],
"optional": ["opentimestamps", "qrcode", "colorama"]
},
"functions": {
"prefer_named_functions": true,
"max_args": 5,
"max_lines": 60
},
"testing": {
"framework": "unittest",
"mock_dependencies": true,
"test_coverage": "partial"
},
"output": {
"file_structure": {
"glyphchain_cli.py": "main CLI logic",
"glyphchain_core.py": "glyph and echo classes",
"glyphchain_utils.py": "timestamping, hashing, export helpers",
"tests/": "unit tests"
}
}
}