Skip to content

Commit

Permalink
Add CHANGELOG to allowed uppercase filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Dolan committed Nov 14, 2019
1 parent 6db0ed5 commit c2ef3af
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ import com.appmattus.markdown.processing.MarkdownDocument
* Based on [File name](https://www.cirosantilli.com/markdown-style-guide/#file-name)
*/
class LowerCaseFilenameRule(
private val exclusions: List<String> = listOf("README.md", "LICENSE.md", "NOTICE.md", "CONTRIBUTING.md"),
private val exclusions: List<String> = listOf(
"README.md",
"LICENSE.md",
"NOTICE.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
),
override val config: RuleSetup.Builder.() -> Unit = {}
) : Rule() {

Expand Down

0 comments on commit c2ef3af

Please sign in to comment.