Class: SCSSLint::Linter::ImportPath
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::ImportPath
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/import_path.rb
Overview
Checks formatting of the basenames of @imported partials
Constant Summary
Constants included from Utils
Instance Attribute Summary
Attributes inherited from SCSSLint::Linter
Instance Method Summary collapse
Methods included from SCSSLint::LinterRegistry
extract_linters_from, included
Methods inherited from SCSSLint::Linter
Methods included from Utils
#color?, #color_hex?, #color_keyword?, #color_keyword_to_code, #extract_string_selectors, #node_ancestor, #node_siblings, #pluralize, #previous_node, #remove_quoted_strings, #same_position?
Methods included from SelectorVisitor
Constructor Details
This class inherits a constructor from SCSSLint::Linter
Instance Method Details
#visit_import(node) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/scss_lint/linter/import_path.rb', line 6 def visit_import(node) # Ignore CSS imports return if File.extname(node.imported_filename) == '.css' basename = File.basename(node.imported_filename) return if underscore_ok?(basename) && extension_ok?(basename) add_lint(node, (node.imported_filename)) end |