-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/tweak-cache' into tweak-cache
- Loading branch information
Showing
5 changed files
with
191 additions
and
125 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,49 @@ | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# Path to configuration file to extend | ||
extends: null | ||
|
||
# MD012/no-multiple-blanks - Multiple consecutive blank lines | ||
MD012: | ||
# Consecutive blank lines | ||
maximum: 1 | ||
|
||
# MD013/line-length - Line length | ||
MD013: | ||
# Number of characters | ||
line_length: 80 | ||
# Number of characters for headings | ||
heading_line_length: 80 | ||
# Number of characters for code blocks | ||
code_block_line_length: 80 | ||
# Include code blocks | ||
code_blocks: true | ||
# Include tables | ||
tables: true | ||
# Include headings | ||
headings: true | ||
# Include headings | ||
headers: true | ||
# Strict length checking | ||
strict: false | ||
# Stern length checking | ||
stern: false | ||
|
||
MD022: | ||
# Blank lines above heading | ||
lines_above: 1 | ||
# Blank lines below heading | ||
lines_below: 0 | ||
|
||
# MD031/blanks-around-fences - Fenced code blocks should be surrounded by blank lines | ||
MD031: | ||
# Include list items | ||
list_items: true | ||
|
||
# MD032/blanks-around-lists - Lists should be surrounded by blank lines | ||
MD032: true | ||
|
||
# MD034/no-bare-urls - Bare URL used | ||
MD034: false |
Oops, something went wrong.