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

scss-lint.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a4809f80fdf792568b411336dd267ee8bf1aedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

unless Rails.env.production?
  require 'scss_lint/rake_task'

  SCSSLint::RakeTask.new do |t|
    t.config = '.scss-lint.yml'
    # See https://github.com/brigade/scss-lint/issues/726
    # Hack, otherwise linter won't respect scss_files option in config file.
    t.files = []
  end
end