mirror of
https://github.com/primer/css.git
synced 2024-11-26 12:14:22 +03:00
9 lines
164 B
Ruby
9 lines
164 B
Ruby
task :test do
|
|
lints = `scss-lint scss/primer.scss`
|
|
if lints != ''
|
|
abort("scss-lint of the .scss files failed!\n#{lints}")
|
|
end
|
|
end
|
|
|
|
task :default => :test
|