-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[Config] add cautionary note on ini file loader limitation #3431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,13 @@ The Config component provides several classes to help you find, load, combine, | |
autofill and validate configuration values of any kind, whatever their source | ||
may be (YAML, XML, INI files, or for instance a database). | ||
|
||
.. caution:: | ||
|
||
``IniFileLoader`` parses with the `parse_ini_file` function, therefore | ||
it can only configure parameters as string values. For other | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. how about:
|
||
data types support (e.g. Boolean, integer, etc), the other loaders | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please use boolean here... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok i am bracing for a long debate here 💃 but i will comply. Youth! they try to change everything these days 👶 |
||
are recommended. | ||
|
||
Installation | ||
------------ | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The IniFileLoader [...]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.