class Govuk::Lint::SassCLI

def run(args = ARGV)

def run(args = ARGV)
  warn "[DEPRECATION] `govuk-scss-lint` is deprecated.  Please use `scss-lint` with `scss-lint-govuk` instead."
  args += [
            "--config",
            File.join(Govuk::Lint::CONFIG_PATH, "scss_lint/gds-sass-styleguide.yml"),
            "--no-color",
            "--exclude",
            File.join(args.first, "**/vendor/*"),
          ]
  super(args)
end