Skip to content

Releases: mysticatea/eslint-plugin-node

v0.5.0

16 Jan 14:05
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

Breaking Changes:

  • 8c9d65e no-unsupported-features rule got to cover subclassing and new static properties of built-in global objects (#10)
  • 8c9d65e Several values of "ignores" option of no-unsupported-features rule were changed (#10)

I'm planning to release a stable version in this month :)

v0.4.1

09 Jan 21:42
Compare
Choose a tag to compare
v0.4.1 Pre-release
Pre-release

Bug Fixes:

  • Fixed: shebang rule had been inserting the shebang to wrong location if there is a header comment.
  • Fixed: it added tests which check working fine even if context.getFilename() returns a relative path.

v0.4.0

09 Jan 19:04
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

Breaking Changes:

  • No longer no-missing-* rules are checking whether or not import targets are published.
    So "publish" option was removed. (#3)
  • "convertBinPath" option of shebang rule was removed.
    Please use new "convertPath" option.
    It's consistent with other rules. (#7)

Updates:

  • no-unpublished-* rules were added.
    They were split out from no-missing-* rules. (#3)
  • shebang rule got fixable. (#8)
  • "tryExtensions" option was added to no-missing-* and no-unpublished-*. (#14)
    As a result, the behavior that checks files with additional extensions was improved.
    Thank you @AprilArcus !
  • We got an ability to use shared settings for rules.
    • "convertPath" for no-unpublished-* and shebang.
    • "tryExtensions" for no-missing-* and no-unpublished-*.

v0.3.0

28 Dec 11:51
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release
  • no-unsupported-features rule is added (#5).

v0.2.1

15 Dec 08:32
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release

Bug Fixes:

  • There was a case that rules fail to find package.json (#1).
    Plus, I changed cache strategy for package.json.
  • no-missing-require did not work on ESLint 2.0.0-alpha-1 (#2).

v0.2.0

28 Nov 13:50
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
  • Added convertBinPath option to node/shebang.

v0.1.0

27 Nov 13:24
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

The first beta release.

Three rules are added.