Skip to content

Commit

Permalink
Merge pull request github#69 from github/explicit-syntax
Browse files Browse the repository at this point in the history
Be more explicit about markdown syntax
  • Loading branch information
bkeepers authored Aug 20, 2016
2 parents f587d60 + f58f120 commit 7561592
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions script/test-prose
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,24 @@ var options = {

// https://github.com/wooorm/remark-lint/blob/master/doc/rules.md
"lint": {
"list-item-indent": "space", // As the gods intended.
"maximum-line-length": false, // turn off line length linting
// Headings
"heading-style": "atx", // ## Headings
"first-heading-level": 2, // Page title is h1, so start with h2
"no-heading-punctuation": false,
"maximum-heading-length": 80, // FIXME: Eventually remove this

// Lists
"list-item-indent": "space", // As the gods intended.
"list-item-spacing": false,
"first-heading-level": 2, // Page title is h1, so start with h2
"no-missing-blank-lines": {"exceptTightLists": true},
"emphasis-marker": "_",
"unordered-list-marker-style": "*",
"ordered-list-marker-style": ".",

// FIXME: Eventually remove these
"maximum-heading-length": 80,
// Misc
"maximum-line-length": false, // turn off line length linting
"emphasis-marker": "_",
"strong-marker": "*",
"blockquote-indentation": 2,
"no-missing-blank-lines": {"exceptTightLists": true},
},
"readability": {
"age": 18
Expand Down

0 comments on commit 7561592

Please sign in to comment.