diff --git a/.eslintignore b/.eslintignore index ae12f3bce5..87837497a0 100644 --- a/.eslintignore +++ b/.eslintignore @@ -11,5 +11,6 @@ docs/vendor/bundle/ examples/ # Ignore built files. build/ +coverage/ scripts/bench/bench-*.js vendor/* diff --git a/package.json b/package.json index 86eceae4d9..0b74e383e5 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "devDependencies": { "async": "^1.5.0", "babel": "^5.8.29", - "babel-eslint": "4.1.5", + "babel-eslint": "4.1.8", "browserify": "^12.0.1", "bundle-collapser": "^1.1.1", "coffee-script": "^1.8.0", diff --git a/src/renderers/shared/reconciler/__tests__/ReactStatelessComponent-test.js b/src/renderers/shared/reconciler/__tests__/ReactStatelessComponent-test.js index ff0c862829..5c1795e5a4 100644 --- a/src/renderers/shared/reconciler/__tests__/ReactStatelessComponent-test.js +++ b/src/renderers/shared/reconciler/__tests__/ReactStatelessComponent-test.js @@ -224,7 +224,7 @@ describe('ReactStatelessComponent', function() { it('should allow simple functions to return false', function() { function Child() { return false; - }; + } expect(() => ReactTestUtils.renderIntoDocument()).not.toThrow(); });