ConfigurationProblem Type
Record fields
| Record Field |
Description
|
Full Usage:
Code
Field type: int
|
One of `ConfigurationProblemCode`.
|
Full Usage:
Setting
Field type: string
|
The editorconfig name of the setting, such as `fsharp_multiline_bracket_style`. A setting name, never a path.
|
Full Usage:
Source
Field type: int
|
One of `ConfigurationProblemSource`.
|
Full Usage:
Value
Field type: string
|
The value that could not be parsed, exactly as it was written in the configuration. Null when `Code` is `UnknownSetting`, because then no value was ever read. A plain string rather than an option: an F# option travels as `{"Case":"Some","Fields":[...]}` and disappears entirely when it is `None`, which is not something a client written in another language should have to know about. Use `Option.ofObj` from F#.
|
fantomas