Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 369 Bytes

Lint-DeprecatedClassMethods.md

File metadata and controls

24 lines (15 loc) · 369 Bytes

Pattern: Deprecated class method call

Issue: -

Description

This rule checks for uses of the deprecated class method usages.

Examples

# bad

File.exists?(some_path)
# good

File.exist?(some_path)

Further Reading