Class: SCSSLint::Config
- Inherits:
-
Object
- Object
- SCSSLint::Config
- Defined in:
- lib/scss_lint/config.rb
Overview
Loads and manages application configuration.
Constant Summary collapse
- FILE_NAME =
'.scss-lint.yml'- DEFAULT_FILE =
File.join(SCSS_LINT_HOME, 'config', 'default.yml')
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#preferred ⇒ Object
If this config should be preferred over others.
-
#warnings ⇒ Object
readonly
Returns the value of attribute warnings.
Class Method Summary collapse
- .default ⇒ Object
-
.for_file(file_path) ⇒ Object
Loads the configuration for a given file.
- .linter_name(linter) ⇒ Object
-
.load(file, options = {}) ⇒ Object
Loads a configuration from a file, merging it with the default configuration.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #disable_all_linters ⇒ Object
- #disable_linter(linter) ⇒ Object
- #enable_linter(linter) ⇒ Object
- #enabled_linters ⇒ Object
- #exclude_file(file_path) ⇒ Object
- #excluded_file?(file_path) ⇒ Boolean
- #excluded_file_for_linter?(file_path, linter) ⇒ Boolean
-
#initialize(options) ⇒ Config
constructor
A new instance of Config.
- #linter_enabled?(linter) ⇒ Boolean
- #linter_options(linter) ⇒ Object
Constructor Details
#initialize(options) ⇒ Config
Returns a new instance of Config.
203 204 205 206 207 208 |
# File 'lib/scss_lint/config.rb', line 203 def initialize() @options = @warnings = [] validate_linters end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
14 15 16 |
# File 'lib/scss_lint/config.rb', line 14 def @options end |
#preferred ⇒ Object
If this config should be preferred over others
13 14 15 |
# File 'lib/scss_lint/config.rb', line 13 def preferred @preferred end |
#warnings ⇒ Object (readonly)
Returns the value of attribute warnings.
14 15 16 |
# File 'lib/scss_lint/config.rb', line 14 def warnings @warnings end |
Class Method Details
.default ⇒ Object
17 18 19 |
# File 'lib/scss_lint/config.rb', line 17 def default load(DEFAULT_FILE, merge_with_default: false) end |
.for_file(file_path) ⇒ Object
Loads the configuration for a given file.
34 35 36 37 38 39 40 41 42 |
# File 'lib/scss_lint/config.rb', line 34 def for_file(file_path) directory = File.dirname(File.(file_path)) @dir_to_config ||= {} @dir_to_config[directory] ||= begin config_file = possible_config_files(directory).find { |path| path.file? } Config.load(config_file.to_s) if config_file end end |
.linter_name(linter) ⇒ Object
44 45 46 47 |
# File 'lib/scss_lint/config.rb', line 44 def linter_name(linter) linter = linter.is_a?(Class) ? linter : linter.class linter.name.split('::')[2..-1].join('::') end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
210 211 212 |
# File 'lib/scss_lint/config.rb', line 210 def ==(other) super || @options == other. end |
#disable_all_linters ⇒ Object
233 234 235 236 237 |
# File 'lib/scss_lint/config.rb', line 233 def disable_all_linters @options['linters'].values.each do |linter_config| linter_config['enabled'] = false end end |
#disable_linter(linter) ⇒ Object
229 230 231 |
# File 'lib/scss_lint/config.rb', line 229 def disable_linter(linter) (linter)['enabled'] = false end |
#enable_linter(linter) ⇒ Object
225 226 227 |
# File 'lib/scss_lint/config.rb', line 225 def enable_linter(linter) (linter)['enabled'] = true end |
#enabled_linters ⇒ Object
215 216 217 218 219 |
# File 'lib/scss_lint/config.rb', line 215 def enabled_linters LinterRegistry.extract_linters_from(@options['linters'].keys).select do |linter| (linter)['enabled'] end end |
#exclude_file(file_path) ⇒ Object
259 260 261 262 263 264 |
# File 'lib/scss_lint/config.rb', line 259 def exclude_file(file_path) abs_path = File.(file_path) @options['exclude'] ||= [] @options['exclude'] << abs_path end |
#excluded_file?(file_path) ⇒ Boolean
243 244 245 246 247 248 249 |
# File 'lib/scss_lint/config.rb', line 243 def excluded_file?(file_path) abs_path = File.(file_path) @options.fetch('exclude', []).any? do |exclusion_glob| File.fnmatch(exclusion_glob, abs_path) end end |
#excluded_file_for_linter?(file_path, linter) ⇒ Boolean
251 252 253 254 255 256 257 |
# File 'lib/scss_lint/config.rb', line 251 def excluded_file_for_linter?(file_path, linter) abs_path = File.(file_path) (linter).fetch('exclude', []).any? do |exclusion_glob| File.fnmatch(exclusion_glob, abs_path) end end |
#linter_enabled?(linter) ⇒ Boolean
221 222 223 |
# File 'lib/scss_lint/config.rb', line 221 def linter_enabled?(linter) (linter)['enabled'] end |
#linter_options(linter) ⇒ Object
239 240 241 |
# File 'lib/scss_lint/config.rb', line 239 def (linter) @options['linters'][self.class.linter_name(linter)] end |