Skip to content

Files

Latest commit

 

History

History
33 lines (19 loc) · 471 Bytes

Lint-DuplicateMagicComment.md

File metadata and controls

33 lines (19 loc) · 471 Bytes

Pattern: Duplicate magic comment

Issue: -

Description

Checks for duplicated magic comments.

Examples

# bad

# encoding: ascii
# encoding: ascii

# good

# encoding: ascii

# bad

# frozen_string_literal: true
# frozen_string_literal: true

# good

# frozen_string_literal: true

Further Reading