You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Custom cop to enforce consistent exception logging format
CustomCops/ExceptionMessageCop:
Enabled: true
Description: 'Enforces consistent exception logging format: use `e.message` instead of bare `#{e}` interpolation, `e.class` instead of `e.class.name`, and require `#{e.class}` alongside any exception interpolation'
SafeAutoCorrect: false
Include:
- "lib/**/*"
# Custom cop to validate environment variable strings
CustomCops/EnvStringValidationCop:
Enabled: true
Description: 'Prevents usage of environment variables that are not in the allowed list'