Sha256: 3238d4799e933078c5ba12619358d3105ee1dd3f46c2e1ddb0907b882ec2d9b4
Contents?: true
Size: 765 Bytes
Versions: 17
Compression:
Stored size: 765 Bytes
Contents
# Irresponsible Module ## Introduction Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities. ## Example Given ```Ruby class Dummy # Do things... end ``` Reek would emit the following warning: ``` test.rb -- 1 warning: [1]:Dummy has no descriptive comment (IrresponsibleModule) ``` Fixing this is simple - just an explaining comment: ```Ruby # The Dummy class is responsible for ... class Dummy # Do things... end ``` ## Current Support in Reek `Irresponsible Module` currently checks classes, but not modules. ## Configuration `Irresponsible Module` supports only the [Basic Smell Options](Basic-Smell-Options.md).
Version data entries
17 entries across 17 versions & 1 rubygems