Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rubocop で数値の自動修正を回避する方法。以下は正しくないと思います。
- (Time.now.to_i * 10000).to_s + (Time.now.to_i * 10_000).to_s
そのルールに同意しない場合は、Rubocop 構成ファイルで無効にする必要があります。に以下を追加する必要があると思います.rubocop.yml:
.rubocop.yml
NumericLiterals: Enabled: false