Welcome to mirror list, hosted at ThFree Co, Russian Federation.

eslint.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51f5d76810257a8eb39b15b7c86acf246b172c29 (plain)
1
2
3
4
5
6
7
8
unless Rails.env.production?
  desc "GitLab | Run ESLint"
  task eslint: ['yarn:check'] do
    unless system('yarn run eslint')
      abort('rake eslint failed')
    end
  end
end