yannickcr/eslint-plugin-react

View on GitHub
lib/util/error.js

Summary

Maintainability
A
55 mins
Test Coverage
'use strict';

/**
 * Logs out a message if there is no format option set.
 * @param {String} message - Message to log.
 */
function error(message) {
  if (!/=-(f|-format)=/.test(process.argv.join('='))) {
    // eslint-disable-next-line no-console
    console.error(message);
  }
}

module.exports = error;