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

_lint_warnings.html.haml « lints « ci « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90db65e6c27e9d782d33115f0b2f3bc881bd55e1 (plain)
1
2
3
4
5
6
7
8
9
10
- if warnings
  - total_warnings = warnings.length
  - message = warning_header(total_warnings)

  - if warnings.any?
    .bs-callout.bs-callout-warning
      %details
        %summary.gl-mb-2= message
        - warnings.each do |warning|
          = markdown(warning)