@rajzik/config-eslint
Version:
Reusable ESLint config.
13 lines (12 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolve = exports.interfaceVersion = void 0;
const lumos_common_1 = require("@rajzik/lumos-common");
exports.interfaceVersion = 2;
function resolve(source) {
if (lumos_common_1.GQL_EXT_PATTERN.exec(source)) {
return { found: true, path: null };
}
return { found: false };
}
exports.resolve = resolve;