Repository URL to install this package:
Version:
0.9.5 ▾
|
/**
* @see https://github.com/yannickcr/eslint-plugin-react/blob/master/lib/rules/no-unknown-property.js#L117
*/
export function autofixProps(props, reactProps) {
if (props.maxlength) {
delete props.maxlength
props.maxLength = reactProps.maxlength
}
if (props.autocomplete) {
delete props.autocomplete
props.autoComplete = String(reactProps.autocomplete)
}
return props
}