wallet-core/node_modules/tslint/lib/rules/fileHeaderRule.js

90 lines
4.5 KiB
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
"use strict";
/**
* @license
* Copyright 2016 Palantir Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var ts = require("typescript");
var Lint = require("../index");
2017-10-14 18:40:54 +02:00
var Rule = /** @class */ (function (_super) {
2017-05-28 00:38:50 +02:00
tslib_1.__extends(Rule, _super);
function Rule() {
return _super !== null && _super.apply(this, arguments) || this;
}
Rule.prototype.apply = function (sourceFile) {
var text = sourceFile.text;
2018-09-20 02:56:13 +02:00
var headerFormat = new RegExp(this.ruleArguments[0]);
var textToInsert = this.ruleArguments[1];
2017-05-28 00:38:50 +02:00
// ignore shebang if it exists
var offset = text.startsWith("#!") ? text.indexOf("\n") : 0;
// returns the text of the first comment or undefined
2017-08-14 05:01:11 +02:00
var commentText = ts.forEachLeadingCommentRange(text, offset, function (pos, end, kind) { return text.substring(pos + 2, kind === ts.SyntaxKind.SingleLineCommentTrivia ? end : end - 2); });
2018-09-20 02:56:13 +02:00
if (commentText === undefined || !headerFormat.test(commentText)) {
var isErrorAtStart = offset === 0;
if (!isErrorAtStart) {
2017-05-28 00:38:50 +02:00
++offset; // show warning in next line after shebang
}
2018-09-20 02:56:13 +02:00
var leadingNewlines = isErrorAtStart ? 0 : 1;
var trailingNewlines = isErrorAtStart ? 2 : 1;
var fix = textToInsert !== undefined
? Lint.Replacement.appendText(offset, this.createComment(sourceFile, textToInsert, leadingNewlines, trailingNewlines))
: undefined;
return [new Lint.RuleFailure(sourceFile, offset, offset, Rule.FAILURE_STRING, this.ruleName, fix)];
2017-05-28 00:38:50 +02:00
}
return [];
};
2018-09-20 02:56:13 +02:00
Rule.prototype.createComment = function (sourceFile, commentText, leadingNewlines, trailingNewlines) {
if (leadingNewlines === void 0) { leadingNewlines = 1; }
if (trailingNewlines === void 0) { trailingNewlines = 1; }
var maybeCarriageReturn = sourceFile.text[sourceFile.getLineEndOfPosition(0)] === "\r" ? "\r" : "";
var lineEnding = maybeCarriageReturn + "\n";
return lineEnding.repeat(leadingNewlines) + [
"/*!"
].concat(commentText.split(/\r?\n/g).map(function (line) { return (" * " + line).replace(/\s+$/, ""); }), [
" */",
]).join(lineEnding) + lineEnding.repeat(trailingNewlines);
};
2017-08-14 05:01:11 +02:00
/* tslint:disable:object-literal-sort-keys */
Rule.metadata = {
ruleName: "file-header",
description: "Enforces a certain header comment for all files, matched by a regular expression.",
2018-09-20 02:56:13 +02:00
optionsDescription: Lint.Utils.dedent(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n The first option, which is mandatory, is a regular expression that all headers should match.\n The second argument, which is optional, is a string that should be inserted as a header comment\n if fixing is enabled and no header that matches the first argument is found."], ["\n The first option, which is mandatory, is a regular expression that all headers should match.\n The second argument, which is optional, is a string that should be inserted as a header comment\n if fixing is enabled and no header that matches the first argument is found."]))),
2017-08-14 05:01:11 +02:00
options: {
2018-09-20 02:56:13 +02:00
type: "array",
items: [
{
type: "string",
},
{
type: "string",
},
],
additionalItems: false,
minLength: 1,
maxLength: 2,
2017-08-14 05:01:11 +02:00
},
2018-09-20 02:56:13 +02:00
optionExamples: [[true, "Copyright \\d{4}", "Copyright 2017"]],
hasFix: true,
2017-08-14 05:01:11 +02:00
type: "style",
typescriptOnly: false,
};
/* tslint:enable:object-literal-sort-keys */
Rule.FAILURE_STRING = "missing file header";
2017-05-28 00:38:50 +02:00
return Rule;
}(Lint.Rules.AbstractRule));
exports.Rule = Rule;
2018-09-20 02:56:13 +02:00
var templateObject_1;