Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 508 Bytes

TooManyFunctions.md

File metadata and controls

13 lines (7 loc) · 508 Bytes

Pattern: Too many functions

Issue: -

Description

Too many functions indicate a violation of the single responsibility principle. Prefer extracting functionality which clearly belongs together in separate parts of the code.

This rule reports files, classes, interfaces, objects and enums which contain too many functions. Each element can be configured with different thresholds.

Further Reading