Disable typescript-eslint plugin rule (no-implicit-any) with inline comment
The correct syntax is like this:
/* eslint-disable @typescript-eslint/no-explicit-any */
So that you directly reference the plugin via eslint.
add this to the .eslintrc (tslintrc) file :
rules: {
"@typescript-eslint/no-explicit-any": "off"
},