Skip to content

Commit

Permalink
Chore: prepare 9.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi committed Aug 14, 2017
1 parent 7afd49b commit 3641628
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 27 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org).

## 9.0.0 - 2017-08-14

- Changed: use `exceptTightLists: true` for `remark-lint-no-missing-blank-lines` rule.
- Removed: `remark-lint-maximum-line-length` rule.

## 8.0.0 - 2017-08-10

- Added: `remark-comment-config` plugin.
Expand Down
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ module.exports = {
[require("remark-lint-list-item-indent"), "space"],
require("remark-lint-list-item-spacing"),
require("remark-lint-maximum-heading-length"),
require("remark-lint-maximum-line-length"),
require("remark-lint-no-auto-link-without-protocol"),
require("remark-lint-no-blockquote-without-marker"),
require("remark-lint-no-consecutive-blank-lines"),
Expand All @@ -60,7 +59,10 @@ module.exports = {
require("remark-lint-no-html"),
require("remark-lint-no-inline-padding"),
require("remark-lint-no-literal-urls"),
require("remark-lint-no-missing-blank-lines"),
[
require("remark-lint-no-missing-blank-lines"),
{ exceptTightLists: true }
],
require("remark-lint-no-multiple-toplevel-headings"),
require("remark-lint-no-paragraph-content-indent"),
require("remark-lint-no-reference-like-url"),
Expand Down
35 changes: 12 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remark-preset-lint-itgalaxy",
"version": "8.0.0",
"version": "9.0.0",
"description": "Itgalaxy org's remark lint rules",
"keywords": [
"remark",
Expand Down Expand Up @@ -50,7 +50,6 @@
"remark-lint-list-item-indent": "^1.0.0",
"remark-lint-list-item-spacing": "^1.0.0",
"remark-lint-maximum-heading-length": "^1.0.0",
"remark-lint-maximum-line-length": "^1.0.0",
"remark-lint-no-auto-link-without-protocol": "^1.0.0",
"remark-lint-no-blockquote-without-marker": "^2.0.0",
"remark-lint-no-consecutive-blank-lines": "^1.0.0",
Expand Down

0 comments on commit 3641628

Please sign in to comment.