tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
20 lines • 614 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoExecScript = void 0;
const convertNoExecScript = () => {
return {
rules: [
{
ruleArguments: [
{
message: "Forbidden call to execScript",
selector: 'CallExpression[callee.name="execScript"]',
},
],
ruleName: "no-restricted-syntax",
},
],
};
};
exports.convertNoExecScript = convertNoExecScript;
//# sourceMappingURL=no-exec-script.js.map