-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom_mappings_example.json
More file actions
40 lines (40 loc) · 1009 Bytes
/
Copy pathcustom_mappings_example.json
File metadata and controls
40 lines (40 loc) · 1009 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
{
"source_dir": "C:/Users/username/Projects",
"target_dir": "C:/Users/username/Organized_Projects",
"mappings": {
"py": "Backend/Python",
"js": "Frontend/JavaScript",
"ts": "Frontend/TypeScript",
"tsx": "Frontend/React",
"jsx": "Frontend/React",
"html": "Frontend/HTML",
"css": "Frontend/CSS",
"scss": "Frontend/SASS",
"json": "Config/JSON",
"md": "Docs",
"sql": "Database",
"go": "Backend/Go",
"java": "Backend/Java",
"php": "Backend/PHP",
"rb": "Backend/Ruby",
"cs": "Backend/CSharp"
},
"project_mode": true,
"exclude_dirs": [
".git",
".vscode",
"node_modules",
"venv",
"env",
"dist",
"build",
"__pycache__"
],
"exclude_files": [
"file_organizer.py",
"file_organizer_config.json",
"README.md",
"package.json",
"requirements.txt"
]
}