0

绳索文件说:

每个项目都有一组被忽略的资源模式

但它没有提到如何配置该列表。

如何为我的项目配置忽略资源列表?

4

2 回答 2

1

~/.ropeproject/config.py一个ignored_resources设置似乎可以解决问题:

# Specify which files and folders to ignore in the project.
# Changes to ignored resources are not added to the history and
# VCSs.  Also they are not returned in `Project.get_files()`.
# Note that ``?`` and ``*`` match all characters but slashes.
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
# '.svn': matches 'pkg/.svn' and all of its children
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
                              '.hg', '.svn', '_svn', '.git', '.tox']
于 2017-08-21T21:14:12.203 回答
0

每个项目都有一个隐藏的子目录.ropeproject/。看看config.py那里的文件。该文件有很好的记录。

于 2017-08-19T19:40:49.197 回答