chore(madrun) lint: add .cloudcmd.menu.js

This commit is contained in:
coderaiser 2019-05-15 18:26:35 +03:00
parent 21ac9bb45b
commit aa8c944fe9

View file

@ -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',
};