Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

14 lignes
422 B

  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. `.trimLeft();
  9. };