We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5096f commit c9e357cCopy full SHA for c9e357c
1 file changed
pymode/libs/rope/base/default_config.py
@@ -14,8 +14,11 @@ def set_prefs(prefs):
14
# '.svn': matches 'pkg/.svn' and all of its children
15
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
16
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
17
- prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
18
- '.hg', '.svn', '_svn', '.git', '.tox']
+ prefs['ignored_resources'] = [
+ '*.pyc', '*~', '.ropeproject', '.hg', '.svn', '_svn',
19
+ '.git', '.tox', '.env', 'env', 'venv', 'node_modules',
20
+ 'bower_components'
21
+ ]
22
23
# Specifies which files should be considered python files. It is
24
# useful when you have scripts inside your project. Only files
0 commit comments