-
-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New: First-Class Support For .eslintrc.ts
#50
Conversation
@kaicataldo There you go :) @bradzacher I've attached links to your works, and used a lot of your comments - thanks a ton for your help, and especially for your playground code; I think that's a solid example for how to explore typing I think I've captured the majority of things. I've mentioned but also leaned away from the type definition side of things, b/c I think they're a natural next step but technically not actually what this RFC is about? That might not matter, since it's one of the biggest reasons for why to accept it, but 🤷♀ it's my first RFC 😂 Let me know any changes, questions, input etc I've included a patch of an implementation that I've confirmed works perfectly as I'd hope w/ IntelliJ & @typescript-eslint/parser. |
Hi. Thank you for your contribution! Well, because the purpose of the RFC process is to clarify user-facing changes and to request feedback, the "Detailed Design" section should describe the user-facing changes rather than the implementation changes. I guess that most people cannot know the user-facing changes from the implementation description. Therefore, would you update the "Detailed Design" section with the changes from the user perspective? I guess that the design of this RFC is the following stuff:
|
@mysticatea thanks for the feedback! I've updated the RFC per your comments. Let me know if there's anything else 🙂 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the fastly update.
Co-Authored-By: Toru Nagashima <public@mysticatea.dev>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This proposal sounds good from my perspective. It's worthful if people can use .eslintrc.ts
in the same manner as .eslintrc.js
because ESLint is supporting TypeScript via @typescript-eslint
and the community is migrating to ESLint from TSLint.
How will this interact with differing TypeScript versions? How will eslint be sure to work with TS 1, 2, 3, and 4+, without requiring version bumps? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My biggest concern is the additional maintenance burden. This doesn't seem like a particularly useful feature unless type definitions are included, and if the community doesn't implement it, the core team will have to. It also will create additional maintenance burden for 3rd party plugin authors.
That being said, I do think it could be beneficial for the team to maintain definition files in core for public APIs (including configuration files and anything we expose publicly in the Node API).
Isn't that the point of relying upon In regards to version compatibility with types; as described by the RFC, the types will be maintained by the community (like they are right now).
Speaking as the maintainer of IMO there is also a simple, incremental support model for the types that will work fine, and will enable users to get some checking, and have plugin authors opt in to adding support if they want to. Failing that - the community can maintain types for plugins; I mean this is exactly the way in which the DefinitelyTyped repo works and exists - package authors don't have to implement types because the community implements them as required. When a package decides it wants/is able to take on the work to maintain the types, they move them internally. A good example of a major package which relies upon this model is |
so does that mean that eslint would need a dep or a peer dep on ts-node? |
To be strict, and keep package managers happy, you would probably want to define an optional peer dependency. |
That’s only a very new feature in npm; in older npm versions all peer deps are always required. |
In other words, this seems like something that should be done via a separate package, and not a dep forced on all non-TS users of eslint. |
No it does not - case & point: the majority of the "Prior Arts" don't have
It could be nice to have yes, but I don't think it's a strict "must-do" -
And they might do again; meanwhile afaik
Use of a separate package would require the changing of a lot of tooling & editors to ensure that they support two types of ESLint, where as this proposal will require no change to tooling & editors to support. |
@G-Rath so the mere presence of npm hasn't installed peer deps by default since v3, but peer deps have always been conceptually required regardless of auto-install behavior. |
The presence of I would call it no more magical than being able to call
Then don't have them as peer dependencies. However, I'm not sure about them always being conceptually required? Quoting from the npm documentation: https://docs.npmjs.com/files/package.json#peerdependencies
Bold emphasis mine - the use of "can" & "along" to me implies that they are optional 🤷♀ It's a not a smoking gun for sure, but I also don't get the opposite impression from that section of the documentation either. They do say this however:
Which could arguably be a case in favor of not specifying it as any dependency, since the host ( |
IMO it's no more magical than eslint automatically picking up How do you know exactly how eslint works in these scenarios? Well everything is clearly documented in the docs: https://eslint.org/docs/user-guide/configuring#configuration-file-formats Following on from that, to me it seems like your concern is solved via a line or two in the above documentation section? ## Configuration File Formats
ESLint supports configuration files in several formats:
* **JavaScript** - use `.eslintrc.js` and export an object containing your configuration.
* **YAML** - use `.eslintrc.yaml` or `.eslintrc.yml` to define the configuration structure.
* **JSON** - use `.eslintrc.json` to define the configuration structure. ESLint's JSON files also allow JavaScript-style comments.
* **Deprecated** - use `.eslintrc`, which can be either JSON or YAML.
* **package.json** - create an `eslintConfig` property in your `package.json` file and define your configuration there.
+* **TypeScript** - use `.eslintrc.ts`, and export an object containing your configuration. Also ensure that the `ts-node` package is installed and available to your eslint installation (i.e. locally if running locally, or globally if running globally).
If there are multiple configuration files in the same directory, ESLint will only use one. The priority order is:
1. `.eslintrc.js`
1. `.eslintrc.yaml`
1. `.eslintrc.yml`
1. `.eslintrc.json`
+1. `.eslitrc.ts`
1. `.eslintrc`
1. `package.json` |
It's more magical than config files because ts-node might be in my node_modules folder through no action of my own - whereas config files are there because I put them there. Jest does this same thing, where the presence of a package magically enables babel registration, and it causes no end of headaches. My concern is that nothing should change without explicit user action. A CLI flag or env var, for example, would be fine. |
You also made the choice to write your configuration file in TypeScript, since otherwise this is a non-issue as the RFC doesn't call for ESLint to run
How about the act of explicitly changing the extension of the configuration file? 😉
I've detailed in the RFC why a flag or env variable would be a poor middle-ground: they'd make it harder to use out of the box w/o changes to tooling & editors (just if you missed that 🙂). |
I fail to see the problem with it "just working" in that case. This would be the same - people don't want to have to create the To me, the fact that it works "magically" if some other package has installed
It seems like a lot of your concerns is things working magically with no visibility when things go wrong, which (as shown) should be possible to handled by using clear debug messages when it's all good (so it's quiet normally, but can be inspected if required), and clear error messages when it's not working. |
@ljharb To clarify. This proposal does nothing even if just |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all of the work on this. I think it's an interesting proposal but not one I can support. The primary reason is that I don't think it's a good idea to build TypeScript directly into the ESLint core. I've never wanted ESLint to be a kingmaker in the JavaScript ecosystem, where things that get into ESLint get considered "official" or "supported". If someone were to ask why we can't have Flow support built-in, I wouldn't know how to differentiate between a decision to include TypeScript and a decision to include Flow, never mind any other dialects that might pop up in the future.
That said, I can see that there is a non-trivial number of ESLint users who would like a way to use TypeScript for their ESLint configuration, but rather than bake this into ESLint itself, I think we should instead look at some kind of generic plugin mechanism where a plugin can define an alternate way of providing configuration to ESLint. That way, the typescript-eslint
project would be able to provide a plugin to do what it wants and while the core of ESLint remains agnostic.
@nzakas thanks for taking the time to read and weight in on this RFC, and I respect your stance, as it's a valid concern. My only two counter-comments is that there is no "flow-eslint" in the same way there is @typescript-eslint. There is a whole ESLint community running parallel to the core that supports this language - that's how I differentiate between this, and other languages. In addition, while I totally think that plugin system is the right long-term solution, it really doesn't help us in the short-term, as it's the sort of thing is a large change, and requires a much larger RFC. Those are my thoughts, but again, completely respect and understand your position - thanks again for taking the time to weigh in 🙂 |
@G-Rath Sure thing. Please keep in mind that we, on the core team, really do need to think long-term even if it means some short-term inconvenience. Things change rapidly in the JS ecosystem and it's a big job to keep ESLint stable enough to continue to function in that kind of environment. I've been interested in creating some kind of a pluggable config system for a while now (built off of #9), so this could be a good reason to move forward on those discussions. |
@nzakas Definitely understand having to think about the long-term, but when do you consider something to be a long-term problem? The RFC you linked was opened just under a year ago, and seems to continue to be hotly debated with little sign of a resolution on the horizon - there also seems to be outstanding problems that still need to be resolved. That's my impression from a brief look, and I'm new to the core side of ESLint, so it could be possible that I'm off-base here, but as you say:
So it's a big deal to be told that this RFC could easily be delayed for months or possibly another year in the hope that it'll be handled by another catch-all RFC, given that the diff of the implementation is very small and very stable - it's the same implementation that's already being used in a number of packages that are in very similar positions to ESLint (i.e Kama, Jest, Webpack). This also means that it's very easy to undo - if and when a new configuration system comes about, or when a new something seems to get enough movement behind it and that there could be value for supporting configuration files written it (b/c i.e there isn't really a gain to writing your configuration files in coffeescript, as linting isn't really something you have conditional settings on), then superseding this RFC w/ another, and reverting its implementation to be replaced by something else is a very easy thing to do 🙂 So when you say:
This inconvenience has been around for a long time; just how long is arguably, but still it's been an inconvenience for at least a year if not more:
While generalisations, these stretch back years - at what point does it stop being short term, and become long term? I grant it's not a pressing high priority problem, nor is it one that people have been screaming out for, but I think a big part of that is b/c no ones submitted an RFC until now, and just accepted it as fact that we can't using TS files meaning we've not bothered exploring what cool things we could do. @bradzacher said as much in his reply to my original issue:
So while I completely understand, and am in full support of finding a nice pluggable means of supporting whatever language people wants, I feel in this case the "what about flow & co" argument is a bit of a bikeshead, as the area of overlap in the venn diagram of "languages that can be linted by eslint" vs "languages that benefit having your eslintrc written in" is rather small 🙂 |
@nzakas I understand your concern, but... How does the configured plugin change the way that ESLint loads config files? ESLint doesn't know what plugins are configured until it loaded configs, but the behavior of this RFC is needed before it loads configs because it's about how it loads configs. |
@G-Rath I completely understand your point, but I think you took my comments a bit too literally. :) To me, the only path forward is to come up with some way that different config file formats can be supported from outside of the ESLint core. I thought implementing #9 could make doing such a thing easier because it limits the number of places configuration can take place, but it's probably not a prerequisite @mysticatea I don't know. Maybe it would have to be a different type of plugin for ESLint than we currently have. I really didn't think it through. My main point is that this isn't something that should be included in the core, but I'd support having a way for third-parties to create ways to do similar things. |
Given that the last comment on this was ~20 days ago, I think this is ready for final commenting. The comments that remain unresolved are b/c I didn't want to mark them as such w/o the OC being happy w/ my responses. On an side, there is an active open PR to allow |
I don't think there is enough support on the team for us to consider incorporating this. Again, I appreciate the thought and time put into the RFC. |
Summary
Support the ability to consume
.eslintrc.ts
configuration files natively.Related Issues
eslint/eslint#12078
eslint/eslint#12082
This is a working implementation for this RFC (Confirmed working in IntelliJ w/o requiring any additional changes)