Skip to content

Commit db2b46d

Browse files
committed
Linting fixes in markdown and code files
1 parent 0115743 commit db2b46d

File tree

10 files changed

+18
-8
lines changed

10 files changed

+18
-8
lines changed

.markdownlint.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"default": true,
3+
"MD013": false,
4+
"MD034": false,
5+
"MD038": false,
6+
"MD040": false
7+
}

LICENSE.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2020
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2121
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2222
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23-
FROM, OUT OF OR IN CONNECTION WI
23+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24+
OTHER DEALINGS IN THE SOFTWARE.

advent-of-code/2015/.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
}
1212
}
1313
]
14-
}
14+
}

advent-of-code/2016/.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
}
1212
}
1313
]
14-
}
14+
}

advent-of-code/2017/.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
"problemMatcher": []
2323
}
2424
]
25-
}
25+
}

advent-of-code/2018/.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
"problemMatcher": []
2323
}
2424
]
25-
}
25+
}

advent-of-code/2019/.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"problemMatcher": []
1616
}
1717
]
18-
}
18+
}

advent-of-code/2019/day-03/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Here are a few more examples:
4444
- R75,D30,R83,U83,L12,D49,R71,U7,L72
4545
U62,R66,U55,R34,D71,R55,D58,R83 = distance 159
4646
```
47+
4748
```
4849
- R98,U47,R26,D63,R33,U87,L62,D20,R33,U53,R51
4950
U98,R91,D20,R16,D67,R40,U7,R15,U6,R7 = distance 135
@@ -82,6 +83,7 @@ Here are the best steps for the extra examples from above:
8283
- R75,D30,R83,U83,L12,D49,R71,U7,L72
8384
U62,R66,U55,R34,D71,R55,D58,R83 = 610 steps
8485
```
86+
8587
```
8688
- R98,U47,R26,D63,R33,U87,L62,D20,R33,U53,R51
8789
U98,R91,D20,R16,D67,R40,U7,R15,U6,R7 = 410 steps

advent-of-code/2019/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pycodestyle]
2-
ignore = W191,W503
2+
ignore = W191,W503

leetcode/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pycodestyle]
2-
ignore = E501,W503
2+
ignore = E501,W503

0 commit comments

Comments
 (0)