Yusuke Tanaka

Results 139 comments of Yusuke Tanaka

@bartlomieju Yeah I think it would be reasonable to provide lint rules for JSX as plugins rather than as builtin. It would be best to make the plugin system ready...

@JLarky As far as I know, there's no extension that makes it possible for deno_lint to be integrated into VSCode for Node projects. But I would say that technically it...

@subhakundu Sure! Please do, and as always feel free to ask about anything. We're sorry that there's no comprehensive documentation about implementing a new lint rule right now (of course...

@subhakundu To explore AST, I usually use `dbg!` macro for the root AST node, i.e. [`Program`](https://rustdoc.swc.rs/swc_ecma_ast/enum.Program.html). > Next steps are to identify type of node (which is potentially Expr I...

@subhakundu No problem, take your time 😉

@bartlomieju Adding aliases to rule names sounds great to me.

I think that's essentially difficult. Your second example (just a statement that consists of a numerical literal) could be reported easily, while as to your first example, which has property...

Yes, indeed there's no harm with the `this` alias in the snippet. But in this particular case, there's a way to achieve the same goal without storing `this` in a...

@bartlomieju > have you found bugs in all the listed rules? not necessarily, but I feel like lots of the listed rules are unable to catch nested violations. For example,...

@bartlomieju Not really sure, let me check if the issue remains.