You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
Assuming that you have written all your rule config in a file called "tslint.json" then I would like to see a console error if one of the referenced rules cannot be found.
For example, if I define "no-unused-whatever" and that rule cannot be found, then I want to see something on the console.
It looks like you just need to add a console.log message in the ruleLoader.ts::findRule() function. Right above return undefined
The text was updated successfully, but these errors were encountered:
Assuming that you have written all your rule config in a file called "tslint.json" then I would like to see a console error if one of the referenced rules cannot be found.
For example, if I define "no-unused-whatever" and that rule cannot be found, then I want to see something on the console.
It looks like you just need to add a console.log message in the
ruleLoader.ts::findRule()
function. Right abovereturn undefined
The text was updated successfully, but these errors were encountered: