From b53f6fa0cc092e4fd62f6c24d0f6cdfb5a575ef8 Mon Sep 17 00:00:00 2001 From: Hamed Asghari Date: Tue, 29 Oct 2024 10:18:02 -0500 Subject: [PATCH] chore: Fix erb_lint deprecation warnings --- .erb-lint.yml => .erb_lint.yml | 0 Rakefile | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .erb-lint.yml => .erb_lint.yml (100%) diff --git a/.erb-lint.yml b/.erb_lint.yml similarity index 100% rename from .erb-lint.yml rename to .erb_lint.yml diff --git a/Rakefile b/Rakefile index 1055b16a2..2891069a3 100644 --- a/Rakefile +++ b/Rakefile @@ -21,7 +21,7 @@ end desc "Lint ERB templates" task :erb_lint do - sh("bundle", "exec", "erblint", "app/views/**/*.erb") + sh("bundle", "exec", "erb_lint", "app/views/**/*.erb") end desc "Run the specs and acceptance tests"