Search code examples
sasslintconfiguration-files

Is it possible to extend a .scss-lint.yml config file


Is there supported syntax to extend a .scss-lint.yml config file in the same way that you can extend a .jshintrc config file?

My goal is to pull all config files from a node package. So a jshint would look something like this:

{
  "extends": "./node_modules/npm-package-name/shared/.jshintrc",
  "browser": true
}

I'm not sure how to pull off a scss-lint file.


Solution

  • As of now this is not possible. A workaround solution is to create a symlink to the scss-lint file.

    ln -s path/to/symlink/filename filename