Closed
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",
}
]
}