Replies: 3 comments 6 replies
-
I think people would find it valuable. I've just no experience here. I only recently used ESLint for the first time. I worked for years in a CoffeeScript env that by the time I got out of it people were more on Prettier + TS, skipping ESLint. |
Beta Was this translation helpful? Give feedback.
-
New to the project but I'd love to help write an ESLint plugin for it. TypeScript is great but ESLint is critical for a whole different class of issues, like little library gotchas that are hard to remember. For instance:
Something like this should be caught in the IDE before runtime, and that could potentially save someone a lot of debugging time. Development runtime warnings are okay, but they can be easily ignored. ESLint is so ubiquitous that lot of organizations require lint diagnostics to be free of errors in their CI/CD. That encourages fixing issues like this right away and keeping the codebase quality high. I'd go so far as to say there needs to be an ESLint plugin before we can have a Next.js-like experience, especially with many new devs picking it up after the 1.0 release. I think a good way to get started would be to collect a list of possible gotchas. Off the top of my head:
|
Beta Was this translation helpful? Give feedback.
-
I've published the first release of eslint-plugin-solid today and would love any feedback! You can drop any suggestions at https://github.com/joshwilsonvu/eslint-plugin-solid. I published it myself to get it out there so people can use it today, but I'd be willing to transfer the package into the solidjs organization sometime if that's what's best for the community—just let me know. There's still more work to be done but I think it's in a useful spot. |
Beta Was this translation helpful? Give feedback.
-
It seems that there is no eslint plugin available.
Beta Was this translation helpful? Give feedback.
All reactions