Prefer `%i` to the literal array syntax

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: ruby-best-practices/percent-i

Language: Ruby

Severity: Notice

Category: Best Practices

Description

The rule “Prefer %i to the literal array syntax” is a guideline that encourages the use of the %i syntax for arrays of symbols. This is a part of the Ruby style guide that aims to promote conciseness and readability.

Symbols are immutable, reusable objects often used in Ruby instead of strings when the value does not need to be changed. When declaring an array of symbols, using the %i syntax can make your code cleaner and easier to read.

To adhere to this rule, instead of declaring an array of symbols using the literal array syntax like [:foo, :bar, :baz], use the %i syntax like %i[foo bar baz]. It’s a good practice to consistently use %i for arrays of symbols as it enhances code readability and maintainability.

Non-Compliant Code Examples

VALUES = [:foo, :bar, :baz]

Compliant Code Examples

VALUES = %i[foo bar baz]
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis