Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Last active September 16, 2018 01:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phenomnomnominal/8b1e486dd6491c3ef077c8fa3d16623c to your computer and use it in GitHub Desktop.
Save phenomnomnominal/8b1e486dd6491c3ef077c8fa3d16623c to your computer and use it in GitHub Desktop.
import { AbstractWalker } from 'tslint';
import { forEachChild, Node, SourceFile } from 'typescript';
class NoFDescribeOrFItWalker extends AbstractWalker {
public walk (sourceFile: SourceFile) {
const walkNode = (node: Node): void => {
// ...
// evaluate rule
// ...
return forEachChild(node, walkNode);
};
return forEachChild(sourceFile, walkNode);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment