SCSS-Lint

Review SCSS with Hound

Scott avatar
Written by Scott
Updated over a week ago

Hound uses SCSS-Lint (v0.50.2) with this config by default.

To change the way SCSS-Lint is configured simply copy the default config file into your project, make changes and reference the file in your .hound.yml

scss:
  config_file: .scss-lint.yml

To ignore certain SCSS files just add configuration like this:

exclude:
  - "app/assets/stylesheets/plugins/**"

To disable SCSS style checking, add the following to your .hound.yml

scss:
  enabled: false
Did this answer your question?