dead icon indicating copy to clipboard operation
dead copied to clipboard

Add option to allowlist decorated functions as un-dead

Open Tadaboody opened this issue 7 years ago • 1 comments

Certain decorators like Flask.route point to usage from some external code or framework. I'd like the ability to create a per-project whitelist (maybe with some common defaults) of such decorators to reduce the number of false positives

Tadaboody avatar Jan 14 '19 13:01 Tadaboody

seems reasonable, might be difficult / complicated to get this right given someone can myapp = Flask(...) ... @myapp.route or even from foo import myapp ... @myapp.route

asottile avatar Jan 14 '19 17:01 asottile