Changelog
5.0.0
Makefile
Changelog
4.2.4
Exit with status 1 when an error occurs. Fixes [#63][issue 63].
Changelog
4.2.2
Fix --fix-to-stdout
when used with an ignored file.
Changelog
4.2.1
Fix [--fix-to-stdout
when used with an empty file][pull 59].
Changelog
4.2.0
An exciting new feature comes to eslint_d, the first one that is not part of
eslint itself. [Aaron Jensen implemented][pull 53] --fix-to-stdout
which
allows to integrated eslint --fix
into your editor as a save action 🎉
Currently, this feature only works with --stdin
and you can test it like this:
$ cat ./some/file.js | eslint_d --fix-to-stdout --stdin
Changelog
4.1.0
Support for --print-config
was [added by Aaron Jensen][pull 51]. He also
added instructions for Emacs users.
Changelog
4.0.1
Fixes a security issue that was [noticed by Andri Möll][issue 45]. Thanks for
reporting! To avoid CSRF attacks, this [introduces a security token][pull 46]
that must be sent by clients on each request. This change also binds the daemon
explicitly to 127.0.0.1
instead of implicitly listening on all network
interfaces.