-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardize YARD and Markdown Lint configurations (#10)
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
default: true | ||
|
||
# Unordered list indentation | ||
MD007: { indent: 2 } | ||
|
||
# Line length | ||
MD013: { line_length: 90, tables: false, code_blocks: false } | ||
|
||
# Heading duplication is allowed for non-sibling headings | ||
MD024: { siblings_only: true } | ||
|
||
# Do not allow the specified trailing punctuation in a header | ||
MD026: { punctuation: '.,;:' } | ||
|
||
# Order list items must have a prefix that increases in numerical order | ||
MD029: { style: 'ordered' } | ||
|
||
# Lists do not need to be surrounded by blank lines | ||
MD032: false | ||
|
||
# Allow raw HTML in Markdown | ||
MD033: false | ||
|
||
# Allow emphasis to be used instead of a heading | ||
MD036: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--no-private | ||
--hide-void-return | ||
--markup-provider=redcarpet | ||
--markup markdown | ||
--exclude examples/** | ||
- CHANGELOG.md | ||
- CONTRIBUTING.md | ||
- RELEASING.md | ||
- LICENSE.txt |