Recently, my Dired listing in Emacs starting appearing with 015 at the end of each line:
I'm not sure what brought it on. I had been making some changes with my Spacemacs layers but since then I've gone to a completely out-of-the-box Spacemacs configuration and the 015s are still there. It makes Dired pretty much useless because if I try to select a file or drill into a directory it doesn't recognize it. Any ideas or suggestions would be greatly appreciated!

Those are Control M characters. Emacs writes them as either
^M(one char, not two) or\015(again, one char, not 4).This Emacs Wiki page tells you about this: EndOfLineTips.
This is some of what it says:
C-x C-m ris bound torevert-buffer-with-coding-system. UseC-h korC-h fto see more about it.See also (
C-h v) variablebuffer-file-coding-system.Also: use
i line endingsin the Emacs manual, to go to node Coding Systems. That tells all you need to know about this.This question and its answers might also help. And see the UNIX/Linux command
dos2unix.