From 6e75f1722644600ff4e319cad97bf8c1d543027b Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Sat, 3 Apr 2021 04:20:01 +0900 Subject: [PATCH 1/2] feat: set exceptTightLists: true for no-missing-blank-lines (#3) https://www.npmjs.com/package/remark-lint-no-missing-blank-lines --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 74437d3..8bcd81b 100644 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ module.exports.plugins = [ require("remark-lint-no-file-name-outer-dashes"), require("remark-lint-no-heading-like-paragraph"), require("remark-lint-no-heading-punctuation"), - 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"), From dd7ec86ecaadab50c0a5d9e9613199b4e72eff46 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Sat, 3 Apr 2021 04:20:53 +0900 Subject: [PATCH 2/2] chore(release): 0.0.3 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c32b2..5f64587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.0.3](https://github.com/ybiquitous/remark-preset-ybiquitous/compare/v0.0.2...v0.0.3) (2021-04-02) + +### Features + +- set exceptTightLists: true for no-missing-blank-lines ([#3](https://github.com/ybiquitous/remark-preset-ybiquitous/issues/3)) ([6e75f17](https://github.com/ybiquitous/remark-preset-ybiquitous/commit/6e75f1722644600ff4e319cad97bf8c1d543027b)) + ### [0.0.2](https://github.com/ybiquitous/remark-preset-ybiquitous/compare/v0.0.1...v0.0.2) (2021-04-02) ### 0.0.1 (2021-04-02) diff --git a/package.json b/package.json index f9aa97d..447c30a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "remark-preset-ybiquitous", - "version": "0.0.2", + "version": "0.0.3", "description": "Remark preset for ybiquitous", "author": "Masafumi Koba", "license": "MIT",