extend-config-missing.js 423 B

12345678910111213
  1. "use strict";
  2. module.exports = function(it) {
  3. const { configName, importerName } = it;
  4. return `
  5. ESLint couldn't find the config "${configName}" to extend from. Please check that the name of the config is correct.
  6. The config "${configName}" was referenced from the config file in "${importerName}".
  7. If you still have problems, please stop by https://eslint.org/chat/help to chat with the team.
  8. `.trimStart();
  9. };