-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It was more than 2 months gap since the last release and here we are with a couple of bug fixes and better ES2015 support. A big part of fixes related to `requireDescriptionCompleteSentence` rule. If you had troubles with it you can give it a try now. `enforceExistence` now supports ES2015 exports and treats it like usual CommonJS `module.exports`. Also we should note that [Jordan Harband](http://github.com/ljharb) came with a `node v0.8` support 🎉. Thank you, Jordan! See all changes in CHANGELOG.md Thank you for usign it and contributing to it!
- Loading branch information
Showing
2 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "jscs-jsdoc", | ||
"author": "Alexej Yaroshevich <[email protected]>", | ||
"description": "JSCS jsdoc plugin", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"main": "lib/index", | ||
"homepage": "https://github.com/jscs-dev/jscs-jsdoc", | ||
"license": "MIT", | ||
|
@@ -20,7 +20,7 @@ | |
"Raphael Pigulla <[email protected]>" | ||
], | ||
"engines": { | ||
"node": ">= 0.10.0" | ||
"node": ">= 0.8.0" | ||
}, | ||
"dependencies": { | ||
"comment-parser": "^0.3.1", | ||
|