diff options
author | Akshay <[email protected]> | 2022-02-20 04:07:32 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2022-02-20 04:07:32 +0000 |
commit | e8130a90dca048d195603281f72e1af0b4f7ccc6 (patch) | |
tree | 7b722cfc3dcf16417f73ba1577f824782903ad2e /bin/tests/snapshots/main__bool_simplification.snap | |
parent | a80e252193096f22ae79fa03e66a0853ddae050e (diff) |
new lint: bool_simplification
TODO: add more patterns to this
Diffstat (limited to 'bin/tests/snapshots/main__bool_simplification.snap')
-rw-r--r-- | bin/tests/snapshots/main__bool_simplification.snap | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/tests/snapshots/main__bool_simplification.snap b/bin/tests/snapshots/main__bool_simplification.snap new file mode 100644 index 0000000..9e3c991 --- /dev/null +++ b/bin/tests/snapshots/main__bool_simplification.snap | |||
@@ -0,0 +1,13 @@ | |||
1 | --- | ||
2 | source: bin/tests/main.rs | ||
3 | expression: "&out" | ||
4 | |||
5 | --- | ||
6 | [W18] Warning: This boolean expression can be simplified | ||
7 | ╭─[data/bool_simplification.nix:2:7] | ||
8 | │ | ||
9 | 2 │ _ = !(a == b); | ||
10 | · ────┬──── | ||
11 | · ╰────── Try != instead of !(... == ...) | ||
12 | ───╯ | ||
13 | |||