From aa8c944fe9ccd7c9e4b8d3384b6728765dd219bc Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 15 May 2019 18:26:35 +0300 Subject: [PATCH] chore(madrun) lint: add .cloudcmd.menu.js --- madrun.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/madrun.js b/madrun.js index 2ce906ed..48af04d4 100644 --- a/madrun.js +++ b/madrun.js @@ -31,7 +31,7 @@ module.exports = { 'lint': () => run(['putout', 'lint:*', 'spell']), 'lint:server': () => `eslint -c .eslintrc.server ${dirs} --ignore-pattern *.spec.js`, 'lint:test': () => `eslint --ignore-pattern '!.*' ${dirsTest}`, - 'lint:client': () => 'eslint --env browser client', + 'lint:client': () => 'eslint --env browser client --ignore-pattern .cloudcmd.menu.js', 'lint:css': () => 'stylelint css/*.css', 'spell': () => 'yaspeller .', 'fix:lint': () => run(['putout', 'lint:*'], '--fix'), @@ -86,6 +86,6 @@ module.exports = { 'build:client': () => run('6to5:client'), 'build:client:dev': () => run('6to5:client:dev'), 'heroku-postbuild': () => run('6to5:client'), - 'putout': () => 'putout bin client server common test', + 'putout': () => 'putout bin client server common test .cloudcmd.menu.js', };