From 70d87059a43621d3f255bdb99bc2631e4784ee9e Mon Sep 17 00:00:00 2001 From: Brody McKee Date: Fri, 2 Feb 2024 12:34:59 +1100 Subject: [PATCH] feat(eslint): remove `react/jsx-sort-props` Closes #79 BREAKING CHANGE: `react/jsx-sort-props` has been removed. --- eslint/rules/react.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/eslint/rules/react.js b/eslint/rules/react.js index f0b7b1d..6fbcdfa 100644 --- a/eslint/rules/react.js +++ b/eslint/rules/react.js @@ -81,12 +81,6 @@ module.exports = { * 🚫 Not fixable - https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-pascal-case.md */ 'react/jsx-pascal-case': 'warn', - /** - * Require props to be sorted alphabetically. - * - * 🔧 Fixable - https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-sort-props.md - */ - 'react/jsx-sort-props': 'warn', /** * Disallow usage of Array index in keys. *