review-edit-auto
Version:
scan your project, only review edited code in given time-range automatic
17 lines (14 loc) • 311 B
text/typescript
import {SEVERITY} from '../constants';
function getLevel(num: number, isComplexity: boolean): string {
if (isComplexity) {
if (num > 15) {
return SEVERITY.error;
}
return SEVERITY.low;
}
if (num === 2) {
return SEVERITY.error;
}
return SEVERITY.low;
}
export default getLevel;