Standardize File Naming Conventions: Replace Mixed Usage of Hyphens and Underscores #172
Open
1 of 4 tasks
Labels
enhancement
New feature to add to the code
Low
Low priority task
v0.0.2
Change being developed for v.0.0.2
Current Status
Currently, our project uses inconsistent naming conventions across files. Some examples:
run-all.sh
,run-merge.py
import_parallel.sh
,load_parallel.sh
Problem
This inconsistency:
Proposed Solution
Standardize all file names to use underscores, following Python's PEP 8 style guide. This would mean:
Current Name -> New Name
run-all.sh
->run_all.sh
run-merge.py
->run_merge.py
make-test-dataset.py
->make_test_dataset.py
Files that already use underscores (like
import_parallel.sh
) would remain unchanged.Implementation Steps
Additional Considerations
Tasks
Priority
Low
The text was updated successfully, but these errors were encountered: