Sha256: b2cce9ef0de183d7754dd912b0fe7be7d3a789bb32b5ff5c3c6f037c4896dd10
Contents?: true
Size: 749 Bytes
Versions: 9
Compression:
Stored size: 749 Bytes
Contents
module SCSSLint::Exceptions # Raised when an invalid flag is given via the command line. class InvalidCLIOption < StandardError; end # Raised when the configuration file is invalid for some reason. class InvalidConfiguration < StandardError; end # Raised when an unexpected error occurs in a linter class LinterError < StandardError; end # Raised when no files were specified or specified glob patterns did not match # any files. class NoFilesError < StandardError; end # Raised when a required library (specified via command line) does not exist. class RequiredLibraryMissingError < StandardError; end # Raised when a linter gem plugin is required but not installed. class PluginGemLoadError < StandardError; end end
Version data entries
9 entries across 9 versions & 1 rubygems