irelephant 🍭@lemm.ee to Programmer Humor@programming.devEnglish · 19 天前looks good to melemm.eeexternal-linkmessage-square39fedilinkarrow-up1731arrow-down18cross-posted to: programmerhumor@lemmy.ml
arrow-up1723arrow-down1external-linklooks good to melemm.eeirelephant 🍭@lemm.ee to Programmer Humor@programming.devEnglish · 19 天前message-square39fedilinkcross-posted to: programmerhumor@lemmy.ml
minus-squarepscamodio@feddit.itlinkfedilinkarrow-up24·18 天前Meanwhile in another universe one of my biggest win was to introduce this line in our PR validation pipeline. eslint . --max-warnings 0
minus-squareskuzz@discuss.tchncs.delinkfedilinkarrow-up3·17 天前Works so well, and soothes the warning annoyance brain, and keeps warnings from eventually becoming errors.
minus-squarepscamodio@feddit.itlinkfedilinkarrow-up3·17 天前In a codebase with a lot of warnings is even better for me to add a disable comments for all the existing warning and then not allow any new one in. And then each time a part of the code needs to be touched the existing warning there should be solved too.
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up2·17 天前Several times I’ve set the max warnings to whatever the current warning count is, and then decreased that over time.
Meanwhile in another universe one of my biggest win was to introduce this line in our PR validation pipeline.
eslint . --max-warnings 0
Works so well, and soothes the warning annoyance brain, and keeps warnings from eventually becoming errors.
In a codebase with a lot of warnings is even better for me to add a disable comments for all the existing warning and then not allow any new one in.
And then each time a part of the code needs to be touched the existing warning there should be solved too.
Several times I’ve set the max warnings to whatever the current warning count is, and then decreased that over time.