This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Description
The formatter should have a rule for updating the Boolean operators to their supported keywords.
&& should be replaced with and.
|| should be replaced with or.
! should be replaced with not.
For example:
if f1 && f2 || !f3 {
// ...
}
should be updated to
if f1 and f2 or not f3 {
// ...
}