standard-engine
Advanced tools
Changelog
7.2.0 2017-11-07
noDefaultIgnore
option to can now be used to turn off default ignores.Changelog
7.1.0 - 2017-06-21
engine.lintText
and engine.lintTextSync
do not take into account the package.json
configuration settings. These now do not behave differently depending on the current
working directory. See https://github.com/Flet/standard-engine/pull/166Changelog
7.0.0 - 2017-04-04
lintText
method to lintTextSync
lintText
method (that just calls lintTextSync
internally)This effectively undoes the breaking change introduced in 6.0.0, making it safe to
upgrade from standard-engine
5.x to 7.x without introducing any breaking changes.
Related issues:
Changelog
6.0.0 - 2017-02-20
lintText
into a sync methodBefore: standardEngine.lintText(text, [opts], callback)
After: results = standardEngine.lintText(text, [opts])
If an error occurs, an exception is thrown. Otherwise, a results
object is
returned.