*package.json* ```json "posthtml": { "posthtml-beautify": { "rusle": { "blankLines": true } } } ``` *posthtml.config.js* ```js module.exports = { plugins: [ require("posthtml-beautify")({ rules: { blankLines: false } }) ] }; ```