From c059d41441aa36f3047f568855f79764db411d89 Mon Sep 17 00:00:00 2001 From: James Mead Date: Tue, 31 Oct 2023 17:55:05 +0000 Subject: [PATCH] Run JS & CSS linting before rubocop in local build This is a more logical order to me! --- lib/tasks/lint.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/lint.rake b/lib/tasks/lint.rake index 3817bfb01..fae68785a 100644 --- a/lib/tasks/lint.rake +++ b/lib/tasks/lint.rake @@ -1,5 +1,5 @@ desc "Run all linters" task lint: :environment do - sh "bundle exec rubocop" sh "yarn run lint" + sh "bundle exec rubocop" end