eslint-plugin-sonarjs
Version:
40 lines (39 loc) • 1.42 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
/*
* SonarQube JavaScript Plugin
* Copyright (C) SonarSource Sàrl
* mailto:info AT sonarsource DOT com
*
* You can redistribute and/or modify this program under the terms of
* the Sonar Source-Available License Version 1, as published by SonarSource Sàrl.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
const Detector_js_1 = __importDefault(require("../Detector.js"));
class CamelCaseDetector extends Detector_js_1.default {
scan(line) {
for (let i = 0; i < line.length - 1; i++) {
if (isLowerCase(line.charAt(i)) && isUpperCase(line.charAt(i + 1))) {
return 1;
}
}
return 0;
}
}
exports.default = CamelCaseDetector;
function isLowerCase(char) {
return char.toLowerCase() === char;
}
function isUpperCase(char) {
return char.toUpperCase() === char;
}