Showing 4 of 9 total issues
DriveApp
has 24 functions (exceeds 20 allowed). Consider refactoring. Open
Open
class DriveApp { static _folders_: { [string]: Folder } = {}; static _files_: { [string]: File } = {}; static _removedFolders_: Array<Folder> = []; static _removedFiles_: Array<File> = [];
Function SUM
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
SUM(params) { let sum = 0; const notNumbersParams = []; if (params) {
Consider simplifying this complex logical expression. Open
Open
if (!row || !col || row <= 0 || col <= 0 || lines > this.matrix.length ||
Function processFormulas
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
processFormulas() { const processFormula = (cell, formulas) => { if (cell.getFormula() && !cell.getValue()) { cell.setFormula(cell.getFormula().trim()); const parts = cell.getFormula().split('(');
- Read upRead up