All files / src artifacts_rules.ts

100% Statements 21/21
100% Branches 4/4
100% Functions 1/1
100% Lines 21/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 211x 1x 1x 1x 1x 1x 10326x 10326x 10326x 3386928x 3366276x 3366276x 3366276x 1683138x 1683138x 3366276x 3386928x 10326x 10326x 1x 1x
import {IRule} from "./rules/_irule";
import * as Rules from "./rules";
 
export class ArtifactsRules {
 
  public static getRules(): IRule[] {
    const ret: IRule[] = [];
    const list: any = Rules;
    for (const key in Rules) {
      if (typeof list[key] === "function") {
        const rule: IRule = new list[key]();
// note that configuration is also exported from rules
        if (rule.getMetadata !== undefined) {
          ret.push(rule);
        }
      }
    }
    return ret;
  }
 
}