-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abcccac
commit 67dcd4a
Showing
5 changed files
with
19 additions
and
12 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
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# typed: true | ||
# frozen_string_literal: true | ||
|
||
all | ||
rule 'MD007', indent: 2 # Unordered list indentation | ||
rule 'MD026', punctuation: ',;:' # Trailing punctuation in header | ||
exclude_rule 'MD013' # Line length | ||
exclude_rule 'MD029' # Ordered list item prefix | ||
exclude_rule 'MD033' # Inline HTML | ||
exclude_rule 'MD034' # Bare URL used (replaced by HB034) | ||
exclude_rule 'MD046' # Code block style | ||
rule "MD007", indent: 2 # Unordered list indentation | ||
rule "MD026", punctuation: ",;:" # Trailing punctuation in header | ||
exclude_rule "MD013" # Line length | ||
exclude_rule "MD029" # Ordered list item prefix | ||
exclude_rule "MD033" # Inline HTML | ||
exclude_rule "MD034" # Bare URL used (replaced by HB034) | ||
exclude_rule "MD046" # Code block style |
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
ruby file: ".ruby-version" | ||
|
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rake" | ||
|
||
task default: :build | ||
|