-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
CE-99: use camelCase consistently for variable names containing 'ID' and 'URL' #666
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## develop #666 +/- ##
==========================================
Coverage 86.70% 86.70%
Complexity 5399 5399
==========================================
Files 242 242
Lines 18288 18288
Branches 2677 2677
==========================================
Hits 15857 15857
Misses 1962 1962
Partials 469 469 |
3405604
to
d46558b
Compare
3f7dce1
to
4e0a229
Compare
@@ -40,7 +40,7 @@ while [ $counter -lt $max_retries ]; do | |||
fi | |||
echo "Waiting for the workspace to be ready..." | |||
counter=$(( counter + 1)) | |||
sleep 2 | |||
sleep 5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wait slightly longer during test start up in case GitHub is being slow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
AKA the pull request of the beast
This PR converts the acronyms and abbreviations used in credit engine field names to use camel case, instead of a mixture of camel case and all caps. This promotes legibility and allows devs to apply consistent rules to method and attribute naming instead of having to wonder which acronyms do get all caps (ID? URL? HTTP? etc.) and which don't.
See https://google.github.io/styleguide/javaguide.html#s5.3-camel-case for the rules used.