Skip to content

Commit

Permalink
fixed codestyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
firede committed Nov 3, 2014
1 parent 211f795 commit 8c5845f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/rider.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* rider
*
*
* @author firede(firede@firede.us)
*/


/**
* stylus plugin
*
*
* @param {Object} options
* @return {Function}
*/
@@ -19,13 +19,13 @@ function plugin(options) {
implicit = true;
}

return function(style) {
return function (style) {
// include rider
style.include(__dirname);

// implicit import handling
if (implicit) {
style.import('rider');
style.import('rider'); // jshint ignore: line
}
};
}

0 comments on commit 8c5845f

Please sign in to comment.