Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 28a5ea0

Browse files
committed
only scan files with a .css extension
I was noticing .scss being scanned, which isn't relevant because it's much broader syntax. /cc https://github.com/ivantsepp/codeclimate-scss-lint
1 parent 71f7066 commit 28a5ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cc/engine/csslint.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def csslint_xml
5555
end
5656

5757
def files
58-
Dir.glob("**/*css")
58+
Dir.glob("**/*.css")
5959
end
6060
end
6161
end

0 commit comments

Comments
 (0)