Josh Pike
Josh Pike
Special request for https://eslint.org/docs/latest/rules/require-await, I really miss that one and it's all related to ensuring that asynchronous code is written cleanly
``` function bar(arg: string) { return arg?.length; } ``` This case doesn't error (unnecessary optional), but it should.
And one more case that doesn't error when it should (arg.test should always be present which makes the `||` unnecessary): ``` interface Foo { test: string[] } function bar(arg: Foo)...
 the pr is looking stale, want to update it again?
ah sorry. it's no problem, can live with it as I don't have OCD lol
seems like this repo might be abandoned. @tavicu can you give some guidance here, or need assistance in maintaining it?
INSERT ... SELECT is part of the SQL standard and widely supported by major SQL databases. Knex should support it properly, it carries a serious risk of sql injection attacks
neither do anything. based on documentation it appears that `preLaunchTask` is a debugger-agnostic configuration built into VSCode itself, and it runs also when the debug session is restarted.
yeah perfect, thankyou
Sorry @osiewicz I'll need to reopen, as the build command in my case doesn't appear to cover the case where I want to restart the process in the debugger. It...