summaryrefslogtreecommitdiff
path: root/lib/tasks/eslint.rake
blob: 2514b050695dcd4d2cd017fd1c85bb840e082358 (plain)
1
2
3
4
5
6
7
unless Rails.env.production?
  desc "GitLab | Run ESLint"
  task :eslint do
    system("yarn", "run", "eslint")
  end
end