d_run
2021-7-26 10:31:57

Yep using LSP mode, but my settings are very diff (2 spaces, etc.) So far been using make eslint-fix before committing to get the code back to where it (mostly) was on checkout.


jmhimara
2021-7-26 21:58:04

@jmhimara has joined the channel


vishesh
2021-7-26 22:03:20

You can try some combination of .projectile and .dir-locals.el . We can merge those settings in the repo too, so that settings are saner for other new contributors.


d_run
2021-7-26 22:58:27

So.. on Racket 7.9 I have two failing integration tests in /tests/racket-core/list.rkt:

4381,4382c4381,4382 < #t < #t --- > #f > #f (I wrote a thing to diff the output) - so I know that the mismatched tests are on line 4381 – 4382 of the output, but have no idea how to match those to the actual lines in the tests


d_run
2021-7-26 23:08:19

okay i think i found them


d_run
2021-7-26 23:08:56

;; ---------- list-update ---------- (test '("zero" one two) list-update '(zero one two) 0 symbol->string) (test '(zero "one" two) list-update '(zero one two) 1 symbol->string)


d_run
2021-7-26 23:17:48

yup..


d_run
2021-7-26 23:17:51

(zero one two) \| (Symbol(zero) one two) #f (zero one two) \| (zero Symbol(one) two) #f