Performance: Format validation
MEDIUM IMPACT
Format validation affects the speed of form submission and server response time by adding checks before saving data.
validates :email, format: { with: URI::MailTo::EMAIL_REGEXP }validates :email, format: { with: /.+@.+\..+/ }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Simple regex validation | 0 | 0 | 0 | [OK] Good |
| Complex custom validation | 0 | 0 | 0 | [X] Bad |