sanitize EOL for *.md files (#1257)
This commit is contained in:
parent
8b8731c3c8
commit
a6795c224f
|
|
@ -69,7 +69,7 @@ retval += sanitycheck('**/*.cshtml', allow_utf8 = True, allow_eol = (LF,))
|
|||
retval += sanitycheck('**/*.csproj', allow_utf8 = True, allow_eol = (LF,))
|
||||
retval += sanitycheck('**/*.htm', allow_eol = (LF,))
|
||||
retval += sanitycheck('**/*.html', allow_eol = (LF,))
|
||||
retval += sanitycheck('**/*.md')
|
||||
retval += sanitycheck('**/*.md', allow_eol = (LF,))
|
||||
retval += sanitycheck('**/*.proj', allow_eol = (LF,))
|
||||
retval += sanitycheck('**/*.props', allow_eol = (LF,))
|
||||
retval += sanitycheck('**/*.py', allow_eol = (LF,))
|
||||
|
|
|
|||
Loading…
Reference in New Issue