massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / eslint / messages / plugin-invalid.js
1 "use strict";
2
3 module.exports = function(it) {
4     const { configName, importerName } = it;
5
6     return `
7 "${configName}" is invalid syntax for a config specifier.
8
9 * If your intention is to extend from a configuration exported from the plugin, add the configuration name after a slash: e.g. "${configName}/myConfig".
10 * If this is the name of a shareable config instead of a plugin, remove the "plugin:" prefix: i.e. "${configName.slice("plugin:".length)}".
11
12 "${configName}" was referenced from the config file in "${importerName}".
13
14 If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team.
15 `.trimLeft();
16 };