I don't know if there's a simple way to do this within a document. The way I've solved this problem is to define my own .bbx style in biblatex which fixes some of its odder defaults. This style (named here 'mybibstyle') is loaded with the [bibstyle=mybibstyle] option when you load biblatex. (This could be added to the preamble of your document, I suppose, but my preference for long modifications like this is not to add them to documents. (And this is something that one will use all the time.))
Here's a sample; the code is copied from the standard.bbx file in biblatex. This assumes the authoryear-comp style of biblatex as a starting point, and then modifies the bibliography driver for the 'article' type. (It also removes quotation marks from article titles; remove that code if you don't need it.)
If there is a simpler way to do this, I'd be glad to find out.
\ProvidesFile{mybibstyle.bbx}
\RequireBibliographyStyle{standard}
\RequireBibliographyStyle{authoryear-comp} % change this if you're not using author-year
\DeclareFieldFormat[article,incollection,unpublished]{title}{#1}%No quotes for article titles
\DeclareFieldFormat[thesis]{title}{\mkbibemph{#1}} % Theses like book titles
\DeclareBibliographyDriver{article}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\usebibmacro{author/translator+others}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{title}%
\newunit
\printlist{language}%
\newunit\newblock
\usebibmacro{byauthor}%
\newunit\newblock
\usebibmacro{bytranslator+others}%
\newunit\newblock
\printfield{version}%
\newunit\newblock%
\usebibmacro{journal+issuetitle}%
\newunit
\usebibmacro{byeditor+others}%
\newunit
\usebibmacro{note+pages}%
\newunit\newblock
\iftoggle{bbx:isbn}
{\printfield{issn}}
{}%
\newunit\newblock
\usebibmacro{doi+eprint+url}%
\newunit\newblock
\usebibmacro{addendum+pubstate}%
\setunit{\bibpagerefpunct}\newblock
\usebibmacro{pageref}%
\usebibmacro{finentry}}
If your base is using a bibstyle that itself changes the formatting of the 'article' type then you should copy that definition into your custom bbx file as the starting point. The relevant code to remove from the driver is the \usebibmacro{in:} (which is all I removed from the standard bbx version to create the one above.)