Skip to content

Commit d1a044f

Browse files
author
Isaac Ramirez
committed
fix linting md issues
1 parent 15e53a8 commit d1a044f

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

.markdownlint.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"default": true,
3+
"MD026": false,
4+
"MD013": false
5+
}

01-automated-testing/summary.md

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
> is vital to growing your application while preserving a good design.
9797
>
9898
> you've done it by:
99+
>
99100
> * Reusing code/methods. DRY (Don't Repeat Yourself)
100101
> * Renaming objects or functions
101102
>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# no code
22

3-
There is no relevant code for this section.
3+
There is no relevant code for this section.

03-tools-of-the-trade/summary.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@
4343
#### `JsTestDriver` from Google
4444

4545
> Advantages:
46+
>
4647
> * Automated browser tests
4748
> * Multiple machines, mobile devices
4849
> * Multiple browsers simultaneously
4950
>
5051
> Disadvantages:
51-
> * Does NOT support Asynchronous code
52+
>
53+
> * Does NOT support Asynchronous code

06-applied-functions-and-closures/summary.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Example:
4747
```
4848

4949
> **Benefits:**
50+
>
5051
> * Does not pollute the global scope
5152
> * Simulates block scope
5253
@@ -129,5 +130,5 @@ const fibonacciMemoized = (function () {
129130

130131
console.log(fibonacciMemoized(78)) // 8944394323791464 (very fast!)
131132
// NOTE: after fibonacciMemoized(79) results will be invalid due to number overflow.
132-
// fibonacciMemoized(79) will ouput: 14472334024676220 and correct is: 14472334024676221
133+
// fibonacciMemoized(79) will output: 14472334024676220 and correct is: 14472334024676221
133134
```

0 commit comments

Comments
 (0)