It isn't just the lack of a piece of paper, it's the fact every project is new to some extent (to exactly the extent we can't just reuse existing code) and present somewhat new challenges. Also, some difficulties scale very nonlinearly, with single changes turning the challenge from needing a few extra weeks to solve to being effectively insoluble in any reasonable timeframe, if ever. ("Check this program to see if our code standards are being followed" to "Check to see if this program will halt" can sound equivalent to a manager, but woe betide the person who tries on the second one.)
Has anyone ever written a piece of code that's really so difficult for a human to read and figure out whether it halts? Obviously it's not hard to imagine theoretical examples of a program so large nobody could figure it out within a human lifetime, but I'm not entirely convinced for real programs written by humans that checking for haltability is likely to be harder than checking for following coding standards (unless your coding standards consist purely of such narrowly and explicitly defined rules that it's 100% automatable).
Just because a single algorithm that works for all possible programs can't exist doesn't mean that it's necessarily difficult for any (or even most) actual programs humans might write.