From 6f42e9d1cde4de6118970e505dac9c84d018bc44 Mon Sep 17 00:00:00 2001 From: iuhoay Date: Wed, 15 Oct 2025 09:29:58 +0800 Subject: [PATCH] Add db/seeds.rb to Style/StringLiterals Add db/seeds.rb to the string literals configuration to ensure consistent double-quote styling across all Rails application files. --- rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/rubocop.yml b/rubocop.yml index f3d2675..ef37f15 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -246,6 +246,7 @@ Style/StringLiterals: - "lib/**/*" - "test/**/*" - "Gemfile" + - "db/seeds.rb" Style/TrailingCommaInArguments: Enabled: true