You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,18 @@ Below you can find a recommended configuration which is based on the [Angular 2
41
41
-[ ] Do not declare global providers.
42
42
-[ ] Follow convention for naming the routes.
43
43
-[ ] Use `@Injectable` instead of `@Inject`.
44
+
-[ ] Single export per module, except facade modules.
45
+
-[ ] Proper naming of modules (kebab-case followed by module type followed by extension for regular modules, module name plus extension name for facades).
46
+
-[ ] Verify if used directive is declared in the current component or any parent component.
47
+
-[ ] Verify that property or method used in the template exists in the current context.
48
+
-[ ] Proper naming of directives and components (name plus `(Directive|Component)` suffix).
49
+
-[ ] Locate component templates in the same directory.
50
+
-[ ] Locate tests in the same directory (rise optional warning when no test file is found).
51
+
-[ ] Rise warning on complex logic inside of the templates.
52
+
-[ ] Do not manipulate elements referenced within the template.
53
+
-[ ] Implement life-cycle hooks explicitly.
54
+
-[ ] Implement Pipe transform interface for pipes.
55
+
-[ ] Proper naming for pipes (kebab-case, optionally prefixed).
0 commit comments