config-file-missing.js 528 B

12345678910111213141516
  1. "use strict";
  2. module.exports = function() {
  3. return `
  4. ESLint couldn't find an eslint.config.(js|mjs|cjs) file.
  5. From ESLint v9.0.0, the default configuration file is now eslint.config.js.
  6. If you are using a .eslintrc.* file, please follow the migration guide
  7. to update your configuration file to the new format:
  8. https://eslint.org/docs/latest/use/configure/migration-guide
  9. If you still have problems after following the migration guide, please stop by
  10. https://eslint.org/chat/help to chat with the team.
  11. `.trimStart();
  12. };