I would like to disable hyphenation in apa6e's footnotes, to match APA's 6th edition guidelines.
apa6e uses ragged2e, and the ragged2e documentation (pdf) claims that certain commands can make hyphenation "almost impossible":
\setlength{\RaggedLeftRightskip}{0pt plus 1fil}
\setlength{\RaggedRightRightskip}{0pt plus 1fil}
These commands disable hyphenation in the body, but not in the (endnotes) footnotes.
How can I either (1) disable ragged2e's hyphenation in apa6e, or (2) edit apa6e.cls to stop using ragged2e altogether?
Example:
\documentclass[endnotes]{apa6e}
\title{}
\author{}
\shorttitle{}
\authornote{}
\setlength{\RaggedLeftRightskip}{0pt plus 1fil}
\setlength{\RaggedRightRightskip}{0pt plus 1fil}
\begin{document}
The body does not have any hyphenation. Good. Even
reallyreallyreallyreallyreallyreallyreallyreallylongwords remain
unhyphenated.\
%
\footnote{However, the footnotes become hyphenated. The
reallyreallyreallyreallyreallyreallyreallyreallylongwords become
hyphenatated.}
\end{document}