I'm developing my first WordPress plugin and I'm trying to make sure I'm covering all my bases as far as security and best practices go.
I noticed that some plugins check the nonce before running their activation/deactivation code. I know that WordPress will have already checked the nonce in wp-admin/plugins.php before the plugin is activated/deactivated. Is there any reason for me to recheck the nonce in my activate/deactivate functions that are tied to the activation and deactivation hooks respectively?