docs: update to style-guide links
closes #995 Fixed links to John Papa style guide to new repo location.
This commit is contained in:
parent
185f9a7049
commit
1184b57740
|
@ -76,13 +76,13 @@ include ../_util-fns
|
||||||
There are a few rules in particular that will make it much easier to do
|
There are a few rules in particular that will make it much easier to do
|
||||||
*an incremental upgrade* using the Angular 2 `upgrade` module:
|
*an incremental upgrade* using the Angular 2 `upgrade` module:
|
||||||
|
|
||||||
* The [Rule of 1](https://github.com/johnpapa/angular-styleguide#single-responsibility)
|
* The [Rule of 1](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#single-responsibility)
|
||||||
states that there should be one component per file. This not only makes
|
states that there should be one component per file. This not only makes
|
||||||
components easy to navigate and find, but will also allow us to migrate
|
components easy to navigate and find, but will also allow us to migrate
|
||||||
them between languages and frameworks one at a time. In this example application,
|
them between languages and frameworks one at a time. In this example application,
|
||||||
each controller, factory, and filter is in its own source file.
|
each controller, factory, and filter is in its own source file.
|
||||||
* The [Folders-by-Feature Structure](https://github.com/johnpapa/angular-styleguide#style-y152)
|
* The [Folders-by-Feature Structure](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#folders-by-feature-structure)
|
||||||
and [Modularity](https://github.com/johnpapa/angular-styleguide#modularity)
|
and [Modularity](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#modularity)
|
||||||
rules define similar principles on a higher level of abstraction: Different parts of the
|
rules define similar principles on a higher level of abstraction: Different parts of the
|
||||||
application should reside in different directories and Angular modules.
|
application should reside in different directories and Angular modules.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue