UNPKG

monorepo-run

Version:

Run scripts in monorepo with colors, streaming and separated panes

23 lines (22 loc) 517 B
module.exports = { root: true, parser: 'babel-eslint', parserOptions: { sourceType: 'module' }, extends: 'standard', env: { browser: true, }, // add your custom rules here 'rules': { // allow paren-less arrow functions 'arrow-parens': 0, // allow async-await 'generator-star-spacing': 0, // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, // trailing comma 'comma-dangle': ['error', 'always-multiline'], }, }