diff --git a/packages/eslint-config-airbnb/rules/react.js b/packages/eslint-config-airbnb/rules/react.js index c696bf0d..77360205 100644 --- a/packages/eslint-config-airbnb/rules/react.js +++ b/packages/eslint-config-airbnb/rules/react.js @@ -267,13 +267,11 @@ module.exports = { // Prevent invalid characters from appearing in markup // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unescaped-entities.md - // TODO: enable, semver-major - 'react/no-unescaped-entities': 'off', + 'react/no-unescaped-entities': 'error', // Prevent passing of children as props // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-children-prop.md - // TODO: enable, semver-major - 'react/no-children-prop': 'off' + 'react/no-children-prop': 'error' }, settings: {