Strip shortcode from specific post types (formats)

You would need to use WordPress Conditional Tags to query if this page is the custom post type you are wanting to target and then if it is remove shortcode.

Untested but you can try this:

    function remove_shortcodes( $content ) {

        if ( get_post_type() == 'post-type-name' ) {
            return strip_shortcodes( $content );
        }
        else 
            return $content;
    }

add_filter( 'the_content', 'remove_shortcodes' );