comparison configmix/__init__.py @ 228:b2c75efad9e4

Renamed the 'ignore' loader key to '-*-ignore-*-'
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 13 May 2019 09:35:03 +0200
parents f5011eec3b6e
children fcc44302a754
comparison
equal deleted inserted replaced
227:f5011eec3b6e 228:b2c75efad9e4
169 "ini": _load_ini, 169 "ini": _load_ini,
170 "toml": _load_toml, 170 "toml": _load_toml,
171 "conf-toml": _load_toml, 171 "conf-toml": _load_toml,
172 "javascript": _load_json, 172 "javascript": _load_json,
173 "json": _load_json, 173 "json": _load_json,
174 "ignore": _load_ignore, 174 "-*-ignore-*-": _load_ignore,
175 } 175 }
176 """Default associations between file modes and loader functions""" 176 """Default associations between file modes and loader functions"""
177 177
178 178
179 DEFAULT_ASSOC = [ 179 DEFAULT_ASSOC = [