UNPKG

tslint-to-eslint-config

Version:

Converts your TSLint configuration to the closest reasonable ESLint equivalent.

18 lines (17 loc) 571 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.convertObjectLiteralKeyQuotes = void 0; const convertObjectLiteralKeyQuotes = (tslintRule) => { return { rules: [ { ...(tslintRule.ruleArguments.length !== 0 && { ruleArguments: tslintRule.ruleArguments, }), ruleName: "quote-props", }, ], }; }; exports.convertObjectLiteralKeyQuotes = convertObjectLiteralKeyQuotes; //# sourceMappingURL=object-literal-key-quotes.js.map