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

lint.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32b668df3bf1a85ea0a2ded4938805c394f89431 (plain)
1
2
3
4
5
6
7
8
9
unless Rails.env.production?
  namespace :lint do
    desc "GitLab | lint | Lint JavaScript files using ESLint"
    task :javascript do
      Rake::Task['eslint'].invoke
    end
  end
end