nichobi / sponsorblockcast

A shell script that skips sponsored YouTube content on all local Chromecasts
GNU General Public License v3.0
348 stars 15 forks source link

Refactor variables to follow camelCase naming convention #1

Closed Erma32 closed 3 years ago

Erma32 commented 3 years ago
-videoid -> videoId
-maxsleeptime -> maxSleeptime
nichobi commented 3 years ago

Shell script convention is to use lowercase words separated by underscores, not camelcase. So these should probably be video_id and max_sleeptime (or max_sleep_time)