aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/rules/interfaceNameRule.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-08-14 05:01:11 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-08-14 05:02:09 +0200
commit363723fc84f7b8477592e0105aeb331ec9a017af (patch)
tree29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/tslint/lib/rules/interfaceNameRule.js
parent5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff)
node_modules
Diffstat (limited to 'node_modules/tslint/lib/rules/interfaceNameRule.js')
-rw-r--r--node_modules/tslint/lib/rules/interfaceNameRule.js34
1 files changed, 17 insertions, 17 deletions
diff --git a/node_modules/tslint/lib/rules/interfaceNameRule.js b/node_modules/tslint/lib/rules/interfaceNameRule.js
index 4b14a487b..050352bf9 100644
--- a/node_modules/tslint/lib/rules/interfaceNameRule.js
+++ b/node_modules/tslint/lib/rules/interfaceNameRule.js
@@ -31,25 +31,25 @@ var Rule = (function (_super) {
Rule.prototype.apply = function (sourceFile) {
return this.applyWithFunction(sourceFile, walk, { never: this.ruleArguments.indexOf(OPTION_NEVER) !== -1 });
};
+ /* tslint:disable:object-literal-sort-keys */
+ Rule.metadata = {
+ ruleName: "interface-name",
+ description: "Requires interface names to begin with a capital 'I'",
+ rationale: "Makes it easy to differentiate interfaces from regular classes at a glance.",
+ optionsDescription: (_a = ["\n One of the following two options must be provided:\n\n * `\"", "\"` requires interface names to start with an \"I\"\n * `\"", "\"` requires interface names to not have an \"I\" prefix"], _a.raw = ["\n One of the following two options must be provided:\n\n * \\`\"", "\"\\` requires interface names to start with an \"I\"\n * \\`\"", "\"\\` requires interface names to not have an \"I\" prefix"], Lint.Utils.dedent(_a, OPTION_ALWAYS, OPTION_NEVER)),
+ options: {
+ type: "string",
+ enum: [OPTION_ALWAYS, OPTION_NEVER],
+ },
+ optionExamples: [[true, OPTION_ALWAYS], [true, OPTION_NEVER]],
+ type: "style",
+ typescriptOnly: true,
+ };
+ /* tslint:enable:object-literal-sort-keys */
+ Rule.FAILURE_STRING = "interface name must start with a capitalized I";
+ Rule.FAILURE_STRING_NO_PREFIX = 'interface name must not have an "I" prefix';
return Rule;
}(Lint.Rules.AbstractRule));
-/* tslint:disable:object-literal-sort-keys */
-Rule.metadata = {
- ruleName: "interface-name",
- description: "Requires interface names to begin with a capital 'I'",
- rationale: "Makes it easy to differentiate interfaces from regular classes at a glance.",
- optionsDescription: (_a = ["\n One of the following two options must be provided:\n\n * `\"", "\"` requires interface names to start with an \"I\"\n * `\"", "\"` requires interface names to not have an \"I\" prefix"], _a.raw = ["\n One of the following two options must be provided:\n\n * \\`\"", "\"\\` requires interface names to start with an \"I\"\n * \\`\"", "\"\\` requires interface names to not have an \"I\" prefix"], Lint.Utils.dedent(_a, OPTION_ALWAYS, OPTION_NEVER)),
- options: {
- type: "string",
- enum: [OPTION_ALWAYS, OPTION_NEVER],
- },
- optionExamples: [[true, OPTION_ALWAYS], [true, OPTION_NEVER]],
- type: "style",
- typescriptOnly: true,
-};
-/* tslint:enable:object-literal-sort-keys */
-Rule.FAILURE_STRING = "interface name must start with a capitalized I";
-Rule.FAILURE_STRING_NO_PREFIX = 'interface name must not have an "I" prefix';
exports.Rule = Rule;
function walk(ctx) {
var never = ctx.options.never;