Skip to content

Commit

Permalink
feat(tslint-rules): add tslint rule force-jsdoc-comments for enforcin…
Browse files Browse the repository at this point in the history
…g JSDoc usage
  • Loading branch information
dhhyi committed Jun 15, 2020
1 parent 3242394 commit 26b25a7
Show file tree
Hide file tree
Showing 4 changed files with 550 additions and 1 deletion.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ browserslist
/coverage
/junit.xml
/tslint-rules/dist
/tslint-rules/test
/schematics/src/**/files/**
/schematics/src/**/*.js
/nginx/*.conf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import { get<%= classify(name) %>State } from '../store/<%= dasherize(name) %>-s
export class <%= classify(name) %>Facade {
constructor(private store: Store<{}>) {}

// example for debugging
/**
* example for debugging
*/
<%= camelize(name) %>State$ = this.store.pipe(select(get<%= classify(name) %>State));
}
Loading

0 comments on commit 26b25a7

Please sign in to comment.