Lines Matching full:settings
19 """Default settings per-project.
21 These are used by _ProjectConfigParser. Settings names should match
35 - Load project-specific default settings.
36 - Merge general default settings/aliases with project-specific ones.
54 ... [settings]
70 # Check to make sure that settings get merged with project.
73 >>> sorted(config.items("settings"))
76 # Check to make sure that settings works with unknown project.
79 >>> sorted(config.items("settings"))
94 # Update the project settings in the config based on
226 We'll walk through all of the settings from the parser
238 for settings.
241 for name, val in config.items('settings'):
245 val = config.getboolean('settings', name)
247 val = config.getint('settings', name)
294 config: _ProjectConfigParser object containing settings
308 """Set up the settings module by reading config files.