debian-mirror-gitlab/lib/tasks/lint.rake

59 lines
1.3 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
unless Rails.env.production?
namespace :lint do
2018-03-17 18:26:18 +05:30
task :static_verification_env do
ENV['STATIC_VERIFICATION'] = 'true'
end
desc "GitLab | lint | Static verification"
task static_verification: %w[
lint:static_verification_env
dev:load
] do
Gitlab::Utils::Override.verify!
end
2017-08-17 22:00:37 +05:30
desc "GitLab | lint | Lint JavaScript files using ESLint"
task :javascript do
Rake::Task['eslint'].invoke
end
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
desc "GitLab | lint | Lint HAML files"
task :haml do
2019-07-07 11:18:12 +05:30
Rake::Task['haml_lint'].invoke
rescue RuntimeError # The haml_lint tasks raise a RuntimeError
exit(1)
2018-11-08 19:23:39 +05:30
end
2018-03-27 19:54:05 +05:30
desc "GitLab | lint | Run several lint checks"
task :all do
status = 0
%w[
config_lint
2018-11-08 19:23:39 +05:30
lint:haml
2018-03-27 19:54:05 +05:30
scss_lint
gettext:lint
2018-11-08 19:23:39 +05:30
gettext:updated_check
2018-03-27 19:54:05 +05:30
lint:static_verification
].each do |task|
pid = Process.fork do
2019-09-04 21:01:54 +05:30
puts "*** Running rake task: #{task} ***"
Rake::Task[task].invoke
rescue SystemExit => ex
warn "!!! Rake task #{task} exited:"
raise ex
rescue StandardError, ScriptError => ex
warn "!!! Rake task #{task} raised #{ex.class}:"
raise ex
2018-03-27 19:54:05 +05:30
end
Process.waitpid(pid)
status += $?.exitstatus
end
exit(status)
end
2017-08-17 22:00:37 +05:30
end
end