Skip to content

Files

Latest commit

 

History

History
31 lines (19 loc) · 466 Bytes

Bundler-GemComment.md

File metadata and controls

31 lines (19 loc) · 466 Bytes

Pattern: Missing comment for gem

Issue: -

Description

Add a comment describing each gem in your Gemfile.

Examples

# bad

gem 'foo'

# good

# Helpers for the foo things.
gem 'foo'

Configurable attributes

Name | Default value --- | --- | --- Include | **/*.gemfile, **/Gemfile, **/gems.rb Whitelist | []

Further Reading