Lines Matching full:settings
18 """Default settings per-project.
20 These are used by _ProjectConfigParser. Settings names should match
34 - Load project-specific default settings.
35 - Merge general default settings/aliases with project-specific ones.
53 ... [settings]
69 # Check to make sure that settings get merged with project.
72 >>> sorted(config.items("settings"))
75 # Check to make sure that settings works with unknown project.
78 >>> sorted(config.items("settings"))
93 # Update the project settings in the config based on
238 We'll walk through all of the settings from the parser
250 for settings.
253 for name, val in config.items('settings'):
257 val = config.getboolean('settings', name)
259 val = config.getint('settings', name)
306 config: _ProjectConfigParser object containing settings
320 """Set up the settings module by reading config files.