Sha256: 486a851e82be5f836312f1abdca2cdbb2d27b8e646955b489e943e6811be25a8

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

module SCSSLint
  # Reports the use of literals for properties where variables are prefered.
  class Linter::VariableForProperty < Linter
    include LinterRegistry

    IGNORED_VALUES = %w[currentColor inherit initial transparent].freeze

    def visit_root(_node)
      @properties = Set.new(config['properties'])
      yield if @properties.any?
    end

    def visit_prop(node)
      property_name = node.name.join
      return unless @properties.include?(property_name)
      return if ignored_value?(node.value.first)
      return if node.children.first.is_a?(Sass::Script::Tree::Variable)
      return if variable_property_with_important?(node.value.first)

      add_lint(node, "Property #{property_name} should use " \
                     'a variable rather than a literal value')
    end

  private

    def variable_property_with_important?(value)
      value.is_a?(Sass::Script::Tree::ListLiteral) &&
        value.children.length == 2 &&
        value.children.first.is_a?(Sass::Script::Tree::Variable) &&
        value.children.last.value.value == '!important'
    end

    def ignored_value?(value)
      value.respond_to?(:value) &&
        IGNORED_VALUES.include?(value.value.to_s)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
scss_lint-0.60.0 lib/scss_lint/linter/variable_for_property.rb
scss_lint-0.59.0 lib/scss_lint/linter/variable_for_property.rb
scss_lint-0.58.0 lib/scss_lint/linter/variable_for_property.rb
scss_lint-0.57.1 lib/scss_lint/linter/variable_for_property.rb
scss_lint-0.57.0 lib/scss_lint/linter/variable_for_property.rb
scss_lint-0.56.0 lib/scss_lint/linter/variable_for_property.rb