diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b0ca01..c768ab50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog + +### Changed + +- Removed `react/prop-types` in typescript config ([309](https://github.com/Shopify/eslint-plugin-shopify/pull/309)) + ## [29.0.1] - 2019-06-18 ### Changed diff --git a/lib/config/rules/typescript.js b/lib/config/rules/typescript.js index 9c90f8c2..4a7879fc 100644 --- a/lib/config/rules/typescript.js +++ b/lib/config/rules/typescript.js @@ -114,6 +114,9 @@ module.exports = { 'import/no-extraneous-dependencies': 'off', 'no-empty-function': 'off', + // We use TS for prop types + 'react/prop-types': 'off', + // Flag overloaded methods in TS 'no-dupe-class-members': 'off',