From ba0179e62feb6787c14c7f839ac690cb128a2837 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sat, 21 Dec 2019 17:19:38 +0200 Subject: [PATCH] chore(madrun) add lint:stream --- .madrun.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.madrun.js b/.madrun.js index cf91b8759a..1b1ba9af4a 100644 --- a/.madrun.js +++ b/.madrun.js @@ -33,12 +33,15 @@ module.exports = { 'build:start': () => run(['build:client', 'start']), 'build:start:dev': () => run(['build:client:dev', 'start:dev']), 'lint:all': () => run(['lint', 'lint:css', 'spell']), - 'lint:base': () => putout(names), + 'lint:base': () => putout({ + names, + }), 'lint:css': () => 'stylelint css/*.css', 'spell': () => 'yaspeller .', 'fix:lint': () => run(['lint', 'lint:css'], '--fix'), 'lint': () => run('lint:progress'), 'lint:progress': () => run('lint:base', '-f progress'), + 'lint:stream': () => run('lint:base', '-f stream'), 'test:base': () => { const cmd = 'tape';