[Feature Request] Configuration to automatically include camelized versions of filter parameters

For example, when specifying Rails.application.config.filter_parameters += [:social_security_number]

It would be nice if Rails had a boolean configuration option to also include parameter variations such as :socialSecurityNumber.

Something like Rails.application.config.include_camelized_filter_parameters = true

Would be more than happy to work on this if it seems reasonable.

Best,

Glenn Espinosa

Just add both variations or automate with some additional code that adds both variations to the list for you automatically.