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';