-
Notifications
You must be signed in to change notification settings - Fork 101
Handle tslint-eslint-rules properly #342
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
@MLefebvreICO thanks for filing this issue! I'm a little unsure what you mean, but it looks like you're referring to adding converters for rules from tslint-eslint-rules? If so, excellent, yes! Very happy to take those in. |
@JoshuaKGoldberg I though they were direct ESLint rules they embeded, but yeah some rules have a different name under that plugin, so yes adding a converter for that could be nice. Unfortunately, we make the move now to ESLint so I won't be able to enjoy it, but I'm sure it could profit some more people |
Scraping https://github.com/buzinas/tslint-eslint-rules, tds = [...document.querySelectorAll("td[align=left]")];
trs = tds.filter(td => td.textContent === "✅").map(td => td.parentNode).filter(tr => tr.cells.length === 4)
ruleNames = trs.map(tr => `${tr.cells[2].textContent} -> ${tr.cells[1].textContent}`) ...the list is:
|
Here are the rules not already implemented in
|
🚀 Feature Request
Handle tslint-eslint-rules when converting to directly put them in the
rules
of the config.Existing Behavior
It puts valid
eslint
rules into@typescript-eslint/tslint/config
Change Proposal
Handle already valid
eslint
rules added (base on the rule's name) withtslint-eslint-rules
and just transfer them directly into therules
of.eslintrc.js
The text was updated successfully, but these errors were encountered: