@[email protected] to Programmer [email protected] • 3 months agoComenting codelemmy.mlimagemessage-square87fedilinkarrow-up11.18Karrow-down112
arrow-up11.17Karrow-down1imageComenting codelemmy.ml@[email protected] to Programmer [email protected] • 3 months agomessage-square87fedilink
minus-square@[email protected]linkfedilink19•edit-23 months agoChecked one of mine: # get path to the download directory Oh, ok.
minus-square@[email protected]linkfedilink21•3 months agoThe code directly below: function getPathToUploadDirectory() { return config.tmp_path }
minus-square@OmgpwnieslinkEnglish1•3 months agoIf your company uses some sort of code checking tool on PRs, there may be a requirement that all functions have a docstring, even if it’s obvious what it’s doing. Leads to silly comments like this quite often
Checked one of mine:
Oh, ok.
The code directly below:
function getPathToUploadDirectory() { return config.tmp_path }
If your company uses some sort of code checking tool on PRs, there may be a requirement that all functions have a docstring, even if it’s obvious what it’s doing. Leads to silly comments like this quite often