| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- "use strict";
- var __extends = (this && this.__extends) || function (d, b) {
- for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- var ts = require("typescript");
- var Lint = require("../lint");
- var BANNED_KEYWORDS = ["any", "Number", "number", "String", "string", "Boolean", "boolean", "Undefined", "undefined"];
- var OPTION_LEADING_UNDERSCORE = "allow-leading-underscore";
- var OPTION_TRAILING_UNDERSCORE = "allow-trailing-underscore";
- var OPTION_BAN_KEYWORDS = "ban-keywords";
- var OPTION_CHECK_FORMAT = "check-format";
- var Rule = (function (_super) {
- __extends(Rule, _super);
- function Rule() {
- _super.apply(this, arguments);
- }
- Rule.prototype.apply = function (sourceFile) {
- var variableNameWalker = new VariableNameWalker(sourceFile, this.getOptions());
- return this.applyWithWalker(variableNameWalker);
- };
- Rule.FORMAT_FAILURE = "variable name must be in camelcase or uppercase";
- Rule.KEYWORD_FAILURE = "variable name clashes with keyword/type";
- return Rule;
- }(Lint.Rules.AbstractRule));
- exports.Rule = Rule;
- var VariableNameWalker = (function (_super) {
- __extends(VariableNameWalker, _super);
- function VariableNameWalker(sourceFile, options) {
- _super.call(this, sourceFile, options);
- this.shouldBanKeywords = this.hasOption(OPTION_BAN_KEYWORDS);
- this.shouldCheckFormat = !this.shouldBanKeywords || this.hasOption(OPTION_CHECK_FORMAT);
- }
- VariableNameWalker.prototype.visitBindingElement = function (node) {
- if (node.name.kind === ts.SyntaxKind.Identifier) {
- var identifier = node.name;
- this.handleVariableNameFormat(identifier);
- this.handleVariableNameKeyword(identifier);
- }
- _super.prototype.visitBindingElement.call(this, node);
- };
- VariableNameWalker.prototype.visitParameterDeclaration = function (node) {
- if (node.name.kind === ts.SyntaxKind.Identifier) {
- var identifier = node.name;
- this.handleVariableNameFormat(identifier);
- this.handleVariableNameKeyword(identifier);
- }
- _super.prototype.visitParameterDeclaration.call(this, node);
- };
- VariableNameWalker.prototype.visitPropertyDeclaration = function (node) {
- if (node.name != null && node.name.kind === ts.SyntaxKind.Identifier) {
- var identifier = node.name;
- this.handleVariableNameFormat(identifier);
- }
- _super.prototype.visitPropertyDeclaration.call(this, node);
- };
- VariableNameWalker.prototype.visitVariableDeclaration = function (node) {
- if (node.name.kind === ts.SyntaxKind.Identifier) {
- var identifier = node.name;
- this.handleVariableNameFormat(identifier);
- this.handleVariableNameKeyword(identifier);
- }
- _super.prototype.visitVariableDeclaration.call(this, node);
- };
- VariableNameWalker.prototype.visitVariableStatement = function (node) {
- if (!Lint.hasModifier(node.modifiers, ts.SyntaxKind.DeclareKeyword)) {
- _super.prototype.visitVariableStatement.call(this, node);
- }
- };
- VariableNameWalker.prototype.handleVariableNameFormat = function (name) {
- var variableName = name.text;
- if (this.shouldCheckFormat && !this.isCamelCase(variableName) && !isUpperCase(variableName)) {
- this.addFailure(this.createFailure(name.getStart(), name.getWidth(), Rule.FORMAT_FAILURE));
- }
- };
- VariableNameWalker.prototype.handleVariableNameKeyword = function (name) {
- var variableName = name.text;
- if (this.shouldBanKeywords && BANNED_KEYWORDS.indexOf(variableName) !== -1) {
- this.addFailure(this.createFailure(name.getStart(), name.getWidth(), Rule.KEYWORD_FAILURE));
- }
- };
- VariableNameWalker.prototype.isCamelCase = function (name) {
- var firstCharacter = name.charAt(0);
- var lastCharacter = name.charAt(name.length - 1);
- var middle = name.substr(1, name.length - 2);
- if (name.length <= 0) {
- return true;
- }
- if (!this.hasOption(OPTION_LEADING_UNDERSCORE) && firstCharacter === "_") {
- return false;
- }
- if (!this.hasOption(OPTION_TRAILING_UNDERSCORE) && lastCharacter === "_") {
- return false;
- }
- return firstCharacter === firstCharacter.toLowerCase() && middle.indexOf("_") === -1;
- };
- return VariableNameWalker;
- }(Lint.RuleWalker));
- function isUpperCase(name) {
- return name === name.toUpperCase();
- }
|