The following snippet of code will remove the content editor box from a specific custom post type.
/* This will remove the content editor box from the custom post type called "the_post_type" */
add_action( 'init', function() {
remove_post_type_support( 'the_post_type', 'editor' );
}, 99);