tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
18 lines • 531 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoAsyncWithoutAwait = void 0;
const convertNoAsyncWithoutAwait = () => {
return {
rules: [
{
ruleName: "require-await",
ruleSeverity: "off",
},
{
ruleName: "@typescript-eslint/require-await",
},
],
};
};
exports.convertNoAsyncWithoutAwait = convertNoAsyncWithoutAwait;
//# sourceMappingURL=no-async-without-await.js.map