Tyler C Laprade, CFA

Results 95 comments of Tyler C Laprade, CFA

I also came looking for this because this is one of the features I miss most about the Vim extension. I often forget what mode I'm in, so the changing...

For anyone who is interested, I copied the exact colors from the VSCode Vim extension. Just copy these into your `settings.json` (after populating the default values from the Dance settings):...

I came here for this same reason. `import/export` is NOT redundant with TypeScript, but `import/default`, `import/named`, `import/namespace`, and `import/no-unresolved` all are. Additionally, `import/default` doesn't seem to trigger when I expect...

I have another data point from my own codebase. Of note is that my 2nd slowest `import/` rule (`no-unused-modules`) saw a minor increase in time, but nowhere close to the...

Comments on different lines can be moved around by `prettier` or other `eslint` rules. The only way to guarantee you tie your description to your `eslint` comment is by using...

As an additional data point, `--preview` broke my code for both Pyright (`reportImplicitConcatenation`) and Ruff/Flake8 (`ISC002`) today, so I had to revert to non-preview mode (which I was otherwise really...

This same behavior even happens outside comments.

@cooperlees It does not, this code doesn't get a warning: ``` arr = ['a', 'b', 'c', 'd', 'e', 'f'] mydict = {} for i in range(0, len(arr)): def foo(x): mydict[arr[x]]...

>I feel it makes the structure of the code less clear than a solution with more parentheses I'm only a single data point, but for me the un-parenthesized version is...

Sure, happy to do that, ~just not sure where to look~! EDIT: I found `setup.py`. It seems out of date, as the latest Python version it lists is 3.6, while...