Solution: add the following configuration to the package. JSON file
"rules": {
"no-console": "off",
"no-restricted-syntax": ["error", {
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
"message": "Unexpected property on console object was called"
}]
},