We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, our project uses inconsistent naming conventions across files. Some examples:
run-all.sh
run-merge.py
import_parallel.sh
load_parallel.sh
This inconsistency:
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_merge.py
make-test-dataset.py
make_test_dataset.py
Files that already use underscores (like import_parallel.sh) would remain unchanged.
Low
The text was updated successfully, but these errors were encountered:
Another issue here is the appearance of naming conventions like checkDataUpdates.py.
Sorry, something went wrong.
kkdavis14
wjbmattingly
No branches or pull requests
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: