I am using Eslint: v7.26.0 and have the following rule added to it:
'react/sort-prop-types': [
2,
{
callbacksLast: true,
ignoreCase: false,
requiredFirst: true,
sortShapeProp: true,
noSortAlphabetically: false,
},
],
However, when I run the command to fix the ESLint issues, the issues thrown by this rule are not auto-fixed.
eslint --fix --format table someFile.js
Is there a way to auto-fix the errors thrown by this rule?