Skip to content

Commit 3075c0c

Browse files
committed
Make jshint happy
1 parent 13f1271 commit 3075c0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install link:
66
@npm $@
77

88
lint:
9-
@$(BIN)/jshint *.js
9+
@$(BIN)/jshint --verbose *.js
1010

1111
test::
1212
@$(BIN)/mocha -R spec specs/*.js

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function createClass(spec) {
4747
* @param {Function<Error, String>} cb
4848
*/
4949
function renderComponentToString(component, cb) {
50-
Fiber(function() {
50+
Fiber(function() { // jshint ignore:line
5151
Fiber.current.__reactAsyncStatePacket = {};
5252
try {
5353
React.renderComponentToString(component, function(markup) {

0 commit comments

Comments
 (0)