Took a little bit of digging, but here’s how to do it:
Go to your \core\post-formats\standard.php file.
On line 38 (on my version), there is a line that says:
the_excerpt();
Simply change to:
the_content();
This should also remove the “Read More” button automatically as that is tied to the “the_excerpt()” function built into WordPress.