resyntax
resyntax copied to clipboard
Lint same equals, e.g (equal? foo foo)
--------------------
#lang racket
(define foo 1)
(define bar 2)
(equal? foo foo) ; user probably meant to check foo against bar
--------------------
#lang racket
; idk what it should generate? It should warn the user that the comparison of the same thing is pointless
As mentioned here: https://github.com/jeapostrophe/racket-langserver/issues/152#issuecomment-3026511974