All of them can be `set` or `unset`, but a tool name can also be assignable to the `check-indent` attribute.
The check/update commands related to `check-eoleof`, `check-syntax` and `check-utf8` attributes are not overloadable and cannot be parametrized.
Only the commands related to `check-indent` attribute can be parametrized.
## The Parametrizable Configuration
The command `frama-c-lint -e` pretty prints the JSON description equivalent to the default parametrizable configuration related to `check-indent` attribute.
This description defines `black` and `clang-format` as the assignable values of the `git` attribute `check-indent`. It also specifies the system command to use for checking the availability of the tool to use for checking/updating the indentation. The check and update commands are also specified.
When the `check-indent` attribute is set without a value, the description specifies the tool to use from the extension of the file to check/update.
There is also a built-in configuration for `.ml` and `.mli` files based of `ocp-indent` tool (from a directly use of `ocp-indent` library to improve the efficiency of the tool) that can be overloaded if necessary.
That means there is an implicit overloadable JSON description:
```
[
{
"kind": "OCaml",
"extensions": [ ".ml", ".mli" ],
"name": "ocp-indent",
"available_cmd": "...",
"check_cmd": "...",
"update_cmd": "..."
}
]
```
The option `-c <json-confi g-file>` allows to extend and/or overload the default configuration.
When the `available_cmd` field is set to an empty string, that disable the check/update with the related tool.
An empty string can also be set to the field `check_cmd` (resp. `update_cmd`) when the related tool does not offer check (resp. update) command.