import { Linter } from "@nrwl/workspace";

export interface Schema {
  name: string;
  skipFormat: boolean;
  skipPackageJson: boolean;
  directory?: string;
  unitTestRunner: "jest" | "none";
  linter: Linter;
  tags?: string;
}
