-
Notifications
You must be signed in to change notification settings - Fork 100
Closed
Labels
area: missing converterA rule converter should exist but doesn't yet.A rule converter should exist but doesn't yet.status: accepting prsPlease, send in a PR to resolve this! ✨Please, send in a PR to resolve this! ✨
Description
💥 Missing Converter
tslint-to-eslint-config
version: 0.5.1typescript-eslint
version: 2.25.0
TSLint Rule Name
no-reference-import
I'll show a minimal reproducing code to the following:
{
"rules": {
"no-reference-import": true
}
}
then, tslint-to-eslint-config
command out puts the log like the following:
tslint-to-eslint-config does not know the ESLint equivalent for TSLint's "no-reference-import"
expected behavior
This tool should generate a configuration like the following:
"rules": {
"@typescript-eslint/triple-slash-reference": [
"error",
{
"types": "prefer-import",
}
]
}
JoshuaKGoldberg
Metadata
Metadata
Assignees
Labels
area: missing converterA rule converter should exist but doesn't yet.A rule converter should exist but doesn't yet.status: accepting prsPlease, send in a PR to resolve this! ✨Please, send in a PR to resolve this! ✨