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.
-
#warnings ⇒ Object
readonly
Returns the value of attribute warnings.
Class Method Summary collapse
- .default ⇒ Object
- .linter_name(linter) ⇒ Object
-
.load(file, options = {}) ⇒ Object
Loads a configuration from a file, merging it with the default configuration.
-
.user_file ⇒ Object
Returns the location of the user-wide scss-lint configuration.
Instance Method Summary collapse
- #disable_all_linters ⇒ Object
- #disable_linter(linter) ⇒ Object
- #enable_linter(linter) ⇒ Object
- #enabled_linters ⇒ Object
- #exclude_file(file_path) ⇒ Object
- #exclude_patterns ⇒ 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
-
#scss_files ⇒ Object
Array.
Constructor Details
#initialize(options) ⇒ Config
Returns a new instance of Config.
174 175 176 177 178 179 |
# File 'lib/scss_lint/config.rb', line 174 def initialize() @options = @warnings = [] validate_linters end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
9 10 11 |
# File 'lib/scss_lint/config.rb', line 9 def @options end |
#warnings ⇒ Object (readonly)
Returns the value of attribute warnings.
9 10 11 |
# File 'lib/scss_lint/config.rb', line 9 def warnings @warnings end |
Class Method Details
.default ⇒ Object
12 13 14 |
# File 'lib/scss_lint/config.rb', line 12 def default load(DEFAULT_FILE, merge_with_default: false) end |
.linter_name(linter) ⇒ Object
36 37 38 39 |
# File 'lib/scss_lint/config.rb', line 36 def linter_name(linter) linter = linter.is_a?(Class) ? linter : linter.class linter.name.split('::')[2..-1].join('::') end |
.load(file, options = {}) ⇒ Object
Loads a configuration from a file, merging it with the default configuration.
18 19 20 21 22 23 24 25 26 |
# File 'lib/scss_lint/config.rb', line 18 def load(file, = {}) = (file) if .fetch(:merge_with_default, true) = smart_merge(, ) end Config.new() end |
.user_file ⇒ Object
Returns the location of the user-wide scss-lint configuration.
This needs to be a method instead of a constant so that we can change the user’s home directory in tests.
32 33 34 |
# File 'lib/scss_lint/config.rb', line 32 def user_file File.join(Dir.home, FILE_NAME) end |
Instance Method Details
#disable_all_linters ⇒ Object
199 200 201 202 203 |
# File 'lib/scss_lint/config.rb', line 199 def disable_all_linters @options['linters'].values.each do |linter_config| linter_config['enabled'] = false end end |
#disable_linter(linter) ⇒ Object
195 196 197 |
# File 'lib/scss_lint/config.rb', line 195 def disable_linter(linter) (linter)['enabled'] = false end |
#enable_linter(linter) ⇒ Object
191 192 193 |
# File 'lib/scss_lint/config.rb', line 191 def enable_linter(linter) (linter)['enabled'] = true end |
#enabled_linters ⇒ Object
181 182 183 184 185 |
# File 'lib/scss_lint/config.rb', line 181 def enabled_linters LinterRegistry.extract_linters_from(@options['linters'].keys).select do |linter| (linter)['enabled'] end end |
#exclude_file(file_path) ⇒ Object
229 230 231 232 233 234 |
# File 'lib/scss_lint/config.rb', line 229 def exclude_file(file_path) abs_path = File.(file_path) @options['exclude'] ||= [] @options['exclude'] << abs_path end |
#exclude_patterns ⇒ Object
217 218 219 |
# File 'lib/scss_lint/config.rb', line 217 def exclude_patterns @options.fetch('exclude', []) end |
#excluded_file?(file_path) ⇒ Boolean
209 210 211 212 213 214 215 |
# File 'lib/scss_lint/config.rb', line 209 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
221 222 223 224 225 226 227 |
# File 'lib/scss_lint/config.rb', line 221 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
187 188 189 |
# File 'lib/scss_lint/config.rb', line 187 def linter_enabled?(linter) (linter)['enabled'] end |
#linter_options(linter) ⇒ Object
205 206 207 |
# File 'lib/scss_lint/config.rb', line 205 def (linter) @options['linters'][self.class.linter_name(linter)] end |
#scss_files ⇒ Object
Returns Array.
237 238 239 240 241 242 243 |
# File 'lib/scss_lint/config.rb', line 237 def scss_files if path = @options['scss_files'] Dir[path] else [] end end |