edit /etc/sudoers
sudo visudo
Then find the admin group permission section:
%admin ALL = (ALL) ALL
macOS
%wheel ALL=(ALL) ALL
Linux
Change to add NOPASSWD:
%admin ALL = (ALL) NOPASSWD: ALL
macOS
user ALL=(ALL) NOPASSWD: ALL
Linux
Be aware that removing the password requirement to use sudo eliminates a level of security. If someone gains access to your account they will be able to easily escalate to root privileges.