change display_error.exit_code to false (#13873)

The idea comes from @amtoine, I think it would be good to keey
`display_error.exit_code` same value, if user is using default config or
using no config file at all.
This commit is contained in:
Wind
2024-10-14 22:57:30 +08:00
committed by GitHub
parent a0f38f8845
commit 639bd4fc2e
3 changed files with 14 additions and 9 deletions

View File

@ -22,7 +22,7 @@ impl DisplayErrors {
impl Default for DisplayErrors {
fn default() -> Self {
Self {
exit_code: true,
exit_code: false,
termination_signal: true,
}
}