Change naming convention from snake_case to camelCase#446
Conversation
Codecov Report
@@ Coverage Diff @@
## switch_to_vue #446 +/- ##
==============================================
Coverage 95.33% 95.33%
==============================================
Files 88 88
Lines 4077 4077
Branches 259 259
==============================================
Hits 3887 3887
Misses 138 138
Partials 52 52Continue to review full report at Codecov.
|
| return ( | ||
| icon_data ? | ||
| 'data:image/png;base64,' + icon_data : | ||
| urlutils.path_join( |
| "components/vue/dist/vue", | ||
| "urlutils" | ||
| ], function (Vue, urlutils) { | ||
| ], function (Vue, urlUtils) { |
There was a problem hiding this comment.
question is if we should use the same for modules, or just stick to the filename (all lowercase).
But we use Vue... but then again, Vue is also weird because it's a class...
There was a problem hiding this comment.
I just wanted to stay consistent in all files (except for the variables which come from the server). But if I rename it urlUtils I should maybe rename the file as well ?
There was a problem hiding this comment.
google style guide says lowercase for filenames.. so no, the file is urlutils...
Leave it as is.
No description provided.