-
Notifications
You must be signed in to change notification settings - Fork 100
Closed
Labels
good first issueGood for newcomers; welcome aboard!Good for newcomers; welcome aboard!status: accepting prsPlease, send in a PR to resolve this! ✨Please, send in a PR to resolve this! ✨type: bugSomething isn't workingSomething isn't working
Description
tslint-to-eslint-configversion: 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"]
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomers; welcome aboard!Good for newcomers; welcome aboard!status: accepting prsPlease, send in a PR to resolve this! ✨Please, send in a PR to resolve this! ✨type: bugSomething isn't workingSomething isn't working