Closed
Description
tslint-to-eslint-config
version: 0.2.11- ESLint version: 6.6.0
- Node version: 12.8.1
Actual Behavior
Converts to this:
"no-underscore-dangle": [
"error",
"off"
],
Which generates this error:
...eslintrc.js: Configuration for rule "no-underscore-dangle" is invalid: Value "off" should be object.
Expected Behavior
Should convert to this:
"no-underscore-dangle": "off",
Reproduction
Point to a tslint.json file with the following rule:
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]