File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
## Introduction
1919

2020
![Humorous image of software quality estimation as a count of how many expletives
21-
you shout when reading code](http://www.osnews.com/images/comics/wtfm.jpg)
21+
you shout when reading code](https://www.osnews.com/images/comics/wtfm.jpg)
2222

2323
Software engineering principles, from Robert C. Martin's book
2424
[_Clean Code_](https://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882),
@@ -1830,9 +1830,9 @@ didn't break anything. Deciding on what constitutes an adequate amount is up
18301830
to your team, but having 100% coverage (all statements and branches) is how
18311831
you achieve very high confidence and developer peace of mind. This means that
18321832
in addition to having a great testing framework, you also need to use a
1833-
[good coverage tool](http://gotwarlost..io/istanbul/).
1833+
[good coverage tool](https://gotwarlost..io/istanbul/).
18341834

1835-
There's no excuse to not write tests. There are [plenty of good JS test frameworks](http://jstherightway.org/#testing-tools), so find one that your team prefers.
1835+
There's no excuse to not write tests. There are [plenty of good JS test frameworks](https://jstherightway.org/#testing-tools), so find one that your team prefers.
18361836
When you find one that works for your team, then aim to always write tests
18371837
for every new feature/module you introduce. If your preferred method is
18381838
Test Driven Development (TDD), that is great, but the main point is to just
@@ -2074,7 +2074,7 @@ getdata()
20742074

20752075
Formatting is subjective. Like many rules herein, there is no hard and fast
20762076
rule that you must follow. The main point is DO NOT ARGUE over formatting.
2077-
There are [tons of tools](http://standardjs.com/rules.html) to automate this.
2077+
There are [tons of tools](https://standardjs.com/rules.html) to automate this.
20782078
Use one! It's a waste of time and money for engineers to argue over formatting.
20792079

20802080
For things that don't fall under the purview of automatic formatting

0 commit comments

Comments
 (0)