eslint-codemod-utils
Version:
A collection of AST helper functions for more complex ESLint rule fixes.
10 lines (9 loc) • 495 B
JavaScript
export { node } from './node';
export { isNodeOfType } from './is-node-of-type';
export { getIdentifierInParentScope } from './get-identifier-in-parent-scope';
export { insertAtStartOfFile } from './insert-at-start-of-file';
export { getFirstCommentInFile } from './get-first-comment-in-file';
export { getNodeAfterComment } from './get-node-after-comment';
export { closestOfType } from './closest-of-type';
export { insertJSXAttribute } from './insert-jsx-attribute';
export * from './utils';