How to remove the section number ("1" in the example below) in the toc of scrartcl?
it does not matter if the section number is or is not stated in the text (I already know how to remove it there).
I know, I could use a starred section and manually add it to the toc, but in my real document, I use them for something else with a different format
MWE:
\documentclass{scrartcl}
\KOMAoption{sectionentrydots}{true}
\renewcommand*{\sectionformat}{}
\begin{document}
\tableofcontents
\section{non-star section}
\end{document}


