How can i configure tslint to not throw warning when underscore in a variable name in typescript?
For Example:
interface MyInterface{ USER_ID :number }
This throw "variable name must be in lowerCamelCase or UPPER_CASE" error....I cant change the variable name....