Rewrite the equation as f'(x) = 1 + f(x)/x, and you see that it is homogeneous (i.e., f'(x) can be written in terms of f(x)/x).
For homogeneous equations, use the change of variable f(x)=u(x) x, f'(x) = u'(x) x + u(x). You get
x(u'(x) x + u(x)) - (u(x) x) = x
⇒ u'(x)=1/x
⇒ u(x)= ln(abs(x)) +c
⇒ f(x) = x ln(abs(x)) + cx
Impose the initial condition to find c:
f(-1) = -ln(1)-c = 1
⇒c=-1
So the unique solution is
f(x) = x ln(abs(x)) - x
with
f(e-1) = e-1 ln(e-1) - e-1 = -2e-1.