Skip to content

Commit e221ff7

Browse files
committed
Add exports to globals for jshint
This is a bit unfortunate, but it'll shut lint up for the time being. We can't just change the modules to use `module.exports = { ... }` due to how we handle circular dependencies internally (`ReactMount` require `ReactID` and vice versa).
1 parent 607de16 commit e221ff7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/.jshintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"globals": {
2222
"__DEV__": false,
2323
"require": false,
24-
"module": false
24+
"module": false,
25+
"exports": false
2526
}
2627
}

0 commit comments

Comments
 (0)