Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyautoplot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Astronomy and Operations
SDC Operations
pyautoplot
Commits
81ffed3d
Commit
81ffed3d
authored
8 years ago
by
ruudbeukema
Browse files
Options
Downloads
Patches
Plain Diff
I was too quick in deleting this folder, sorry
parent
23d35e26
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.ropeconfig/config.py
+85
-0
85 additions, 0 deletions
.ropeconfig/config.py
with
85 additions
and
0 deletions
.ropeconfig/config.py
0 → 100644
+
85
−
0
View file @
81ffed3d
# The default ``config.py``
def
set_prefs
(
prefs
):
"""
This function is called before opening the project
"""
# 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
'
]
# Specifies which files should be considered python files. It is
# useful when you have scripts inside your project. Only files
# ending with ``.py`` are considered to be python files by
# default.
#prefs['python_files'] = ['*.py']
# Custom source folders: By default rope searches the project
# for finding source folders (folders that should be searched
# for finding modules). You can add paths to that list. Note
# that rope guesses project source folders correctly most of the
# time; use this if you have any problems.
# The folders should be relative to project root and use '/' for
# separating folders regardless of the platform rope is running on.
# 'src/my_source_folder' for instance.
#prefs.add('source_folders', 'src')
# You can extend python path for looking up modules
#prefs.add('python_path', '~/python/')
# Should rope save object information or not.
prefs
[
'
save_objectdb
'
]
=
True
prefs
[
'
compress_objectdb
'
]
=
False
# If `True`, rope analyzes each module when it is being saved.
prefs
[
'
automatic_soa
'
]
=
True
# The depth of calls to follow in static object analysis
prefs
[
'
soa_followed_calls
'
]
=
0
# If `False` when running modules or unit tests "dynamic object
# analysis" is turned off. This makes them much faster.
prefs
[
'
perform_doa
'
]
=
True
# Rope can check the validity of its object DB when running.
prefs
[
'
validate_objectdb
'
]
=
True
# How many undos to hold?
prefs
[
'
max_history_items
'
]
=
32
# Shows whether to save history across sessions.
prefs
[
'
save_history
'
]
=
True
prefs
[
'
compress_history
'
]
=
False
# Set the number spaces used for indenting. According to
# :PEP:`8`, it is best to use 4 spaces. Since most of rope's
# unit-tests use 4 spaces it is more reliable, too.
prefs
[
'
indent_size
'
]
=
4
# Builtin and c-extension modules that are allowed to be imported
# and inspected by rope.
prefs
[
'
extension_modules
'
]
=
[]
# Add all standard c-extensions to extension_modules list.
prefs
[
'
import_dynload_stdmods
'
]
=
True
# If `True` modules with syntax errors are considered to be empty.
# The default value is `False`; When `False` syntax errors raise
# `rope.base.exceptions.ModuleSyntaxError` exception.
prefs
[
'
ignore_syntax_errors
'
]
=
False
# If `True`, rope ignores unresolvable imports. Otherwise, they
# appear in the importing namespace.
prefs
[
'
ignore_bad_imports
'
]
=
False
def
project_opened
(
project
):
"""
This function is called after opening the project
"""
# Do whatever you like here!
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment