i18ncube should ignore node_modules directory by default
authorAdrien Di Mascio <Adrien.DiMascio@logilab.fr>
Mon, 10 Oct 2016 14:34:41 +0200
changeset 11727 2efe0bf90ebb
parent 11726 a599e23c5712
child 11728 b96bed36765d
i18ncube should ignore node_modules directory by default related to #15613724
cubicweb/devtools/devctl.py
--- a/cubicweb/devtools/devctl.py	Wed Oct 05 16:16:33 2016 +0200
+++ b/cubicweb/devtools/devctl.py	Mon Oct 10 14:34:41 2016 +0200
@@ -55,6 +55,7 @@
 STD_BLACKLIST = set(STD_BLACKLIST)
 STD_BLACKLIST.add('.tox')
 STD_BLACKLIST.add('test')
+STD_BLACKLIST.add('node_modules')
 
 
 class DevConfiguration(ServerConfiguration, WebConfiguration):