Commit 1f6ad919 by Timothée Peignier

Merge pull request #333 from jdufresne/master

Add missing ignore_pattern to FileSystemFinder.
parents 2274b706 de6db1d2
...@@ -94,6 +94,7 @@ class FileSystemFinder(PatternFilterMixin, FileSystemFinder): ...@@ -94,6 +94,7 @@ class FileSystemFinder(PatternFilterMixin, FileSystemFinder):
""" """
ignore_patterns = [ ignore_patterns = [
'*.js', '*.js',
'*.css',
'*.less', '*.less',
'*.scss', '*.scss',
'*.styl', '*.styl',
...@@ -114,4 +115,5 @@ class FileSystemFinder(PatternFilterMixin, FileSystemFinder): ...@@ -114,4 +115,5 @@ class FileSystemFinder(PatternFilterMixin, FileSystemFinder):
'*demo*', '*demo*',
'Makefile*', 'Makefile*',
'Gemfile*', 'Gemfile*',
'node_modules',
] ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment