(details: string)
| 253 | } |
| 254 | |
| 255 | function createMaliciousWarning(details: string): Warning { |
| 256 | return new Warning( |
| 257 | MALICIOUS_SKILL_DETECTED.type, |
| 258 | MALICIOUS_SKILL_DETECTED.description, |
| 259 | details, |
| 260 | ); |
| 261 | } |
| 262 | |
| 263 | function createMisConfigurationWarning(details: string): Warning { |
| 264 | return new Warning( |
no outgoing calls
no test coverage detected