Files
gitlab-ce/lib/tasks/eslint.rake
2021-03-02 00:11:26 +00:00

11 lines
220 B
Ruby

# frozen_string_literal: true
unless Rails.env.production?
desc "GitLab | Run ESLint"
task eslint: ['yarn:check'] do
unless system('yarn run lint:eslint:all')
abort('rake eslint failed')
end
end
end