From 3e656750e68acaa166fb53e4783b66b42473db9f Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sun, 6 Nov 2016 22:07:50 -0800 Subject: [PATCH] [eslint config] [breaking] re-enable `react/no-unused-prop-types` --- packages/eslint-config-airbnb/rules/react.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-airbnb/rules/react.js b/packages/eslint-config-airbnb/rules/react.js index 38b7dc25..262b3092 100644 --- a/packages/eslint-config-airbnb/rules/react.js +++ b/packages/eslint-config-airbnb/rules/react.js @@ -271,7 +271,7 @@ module.exports = { // Prevent unused propType definitions // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unused-prop-types.md - 'react/no-unused-prop-types': ['warn', { + 'react/no-unused-prop-types': ['error', { customValidators: [ ], skipShapeProps: true,