The base class of ReporterEditor is named Editor. However, this clashes with namespace Editor used for Editor folders in Unity.
I suggest moving plugin files to their own namespace:
namespace Unity_Logs_Viewer.Reporter.Editor
{
public class ReporterEditor : UnityEditor.Editor
{
...
}
}