Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: externalize ngWalker to support custom lint rules #658

Merged
merged 2 commits into from Jun 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/angular/index.ts
@@ -0,0 +1,7 @@
export * from './templates/basicTemplateAstVisitor';

export * from './styles/basicCssAstVisitor';

export * from './config';
export * from './metadata';
export * from './ngWalker';
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -37,7 +37,7 @@ export { Rule as UsePipeDecoratorRule } from './usePipeDecoratorRule';
export { Rule as UsePipeTransformInterfaceRule } from './usePipeTransformInterfaceRule';
export { Rule as UseViewEncapsulationRule } from './useViewEncapsulationRule';

export * from './angular/config';
export * from './angular';

// this file exists for tslint to resolve the rules directory
export const rulesDirectory = '.';