Nick Schonning

Results 279 issues of Nick Schonning

The example in the repo works on systems that have find, but not so much in a Windows world https://github.com/tcort/markdown-link-check#check-links-from-a-local-markdown-folder-recursive Maybe use https://www.npmjs.com/package/glob to try and parse the file parameter...

enhancement
help needed
Stale

I've been using https://github.com/tcort/markdown-link-check/ as a separate check to validate links in markdown. I was starting to see if I could leverage the `.markdownlint.json` as a config format for that...

new rule

This probably isn't a straight forward one to be fixable. Some of the edges I can think of: - Sometimes the indented code fences in lists are actually indent errors...

enhancement

Currently the fix for MD038 correctly trims the interior of the spans, but sometimes that interior space is because of a missing space after the backtick. EX: ```md My `code...

enhancement

When code fences are using backticks or other explicit styles, I think Markdownlint should add a warning when the block isn't closed. I believe this would fit in the existing...

new rule

Not sure if this would be one or 2 rules. The idea being that if markdown is seeing only a single item in a list, it is likely: 1. Mailformed...

new rule

Like what https://github.com/microsoft/vscode-eslint does in that it allows for disabling through the inline comments at either the file or line scope, when you don't want to globally disable a rule...

enhancement

Not sure if you've already looked at this but http://mypy-lang.org/ can do some pretty interesting static analysis on Python code. It uses some Python 3 annotation for some of the...