Skip to content

Instantly share code, notes, and snippets.

@beeman
Created May 15, 2020 17:27
Show Gist options
  • Save beeman/3a5e174a3b055077f0d684b853184f9e to your computer and use it in GitHub Desktop.
Save beeman/3a5e174a3b055077f0d684b853184f9e to your computer and use it in GitHub Desktop.
export const myRule = (_: any): Rule => {
return (tree: Tree): Tree => {
const files: any[] = [];
tree.visit((file) => {
files.push(file);
});
console.log("Files count", files.length);
return tree;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment