Showing 67 of 86 total issues
Function parseTexto
has 221 lines of code (exceeds 25 allowed). Consider refactoring. Open
function parseTexto(textoOriginal) {
var contexto = {
ultimoItem: null,
textoAnterior: '',
artigos: [],
File interpretadorArticulacao.js
has 513 lines of code (exceeds 250 allowed). Consider refactoring. Open
/* Copyright 2017 Assembleia Legislativa de Minas Gerais
*
* This file is part of Editor-Articulacao.
*
* Editor-Articulacao is free software: you can redistribute it and/or modify
Function parseTexto
has a Cognitive Complexity of 50 (exceeds 5 allowed). Consider refactoring. Open
function parseTexto(textoOriginal) {
var contexto = {
ultimoItem: null,
textoAnterior: '',
artigos: [],
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function exportarParaLexML
has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring. Open
function exportarParaLexML(dispositivoDOM, rotulos) {
var cntArtigos = 0;
if (!rotulos) {
rotulos = padrao.rotulo;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function exportarParaLexML
has 143 lines of code (exceeds 25 allowed). Consider refactoring. Open
function exportarParaLexML(dispositivoDOM, rotulos) {
var cntArtigos = 0;
if (!rotulos) {
rotulos = padrao.rotulo;
File EditorArticulacaoController.js
has 375 lines of code (exceeds 250 allowed). Consider refactoring. Open
/* Copyright 2017 Assembleia Legislativa de Minas Gerais
*
* This file is part of Editor-Articulacao.
*
* Editor-Articulacao is free software: you can redistribute it and/or modify
Function obterSelecao
has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring. Open
function obterSelecao(ctrl) {
var selecao = ctrl.getSelection();
var range = selecao && selecao.rangeCount > 0 ? selecao.getRangeAt(0) : null;
if (range) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function constructor
has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring. Open
constructor(elementoArticulacao, dispositivo) {
let cursor = {
italico: dispositivo.tagName === 'I',
desconhecido: false,
titulo: false,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function polyfill
has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring. Open
function polyfill() {
// IE 11 não tem Object.assing
// Object polyfill from https://developer.mozilla.org/en-US/docs/Glossary/Polyfill
if (!Object.assign) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function hackInterceptarKeydown
has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring. Open
function hackInterceptarKeydown(keyboardEvent, editorCtrl) {
/* Somente serão tratadas as alterações de conteúdo. Portanto,
* se houver qualquer tecla modificativa (ctrl, alt ou meta),
* o evento será ignorado. O evento só será tratado se a tecla for
* de conteúdo (letra, número ou enter), ou remoção (delete, backspace).
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
File exportarParaLexML.js
has 314 lines of code (exceeds 250 allowed). Consider refactoring. Open
/* Copyright 2017 Assembleia Legislativa de Minas Gerais
*
* This file is part of Editor-Articulacao.
*
* Editor-Articulacao is free software: you can redistribute it and/or modify
Function importarDeLexML
has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring. Open
function importarDeLexML(elemento, resultado) {
if (!resultado) {
resultado = document.createDocumentFragment();
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function colarFragmento
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
function colarFragmento(fragmento, editorCtrl, validacaoCtrl) {
prepararDesfazer(fragmento, editorCtrl);
let proximaSelecao = fragmento.lastChild;
let selecao = editorCtrl.getSelection();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function transformarTextoPuro
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
function transformarTextoPuro(texto, tipo) {
if (texto.length === 0) {
return;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function constructor
has 72 lines of code (exceeds 25 allowed). Consider refactoring. Open
constructor(elementoArticulacao, dispositivo) {
let cursor = {
italico: dispositivo.tagName === 'I',
desconhecido: false,
titulo: false,
Function _normalizarParagrafo
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
_normalizarParagrafo(dispositivo) {
let anterior = encontrarDispositivoAnteriorDoTipo(dispositivo, ['artigo', 'paragrafo']);
let posterior = encontrarDispositivoPosteriorDoTipo(dispositivo, ['artigo', 'paragrafo']);
if (dispositivo.getAttribute('data-tipo') === 'paragrafo' || dispositivo.getAttribute('data-tipo') === 'continuacao') {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function criarRotuloLexML
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
function criarRotuloLexML(tipo, numero, unico, nEmenda, rotulos) {
var elemento = document.createElementNS('http://www.lexml.gov.br/1.0', 'Rotulo');
switch (tipo) {
case 'Artigo':
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function importarDeLexML
has 56 lines of code (exceeds 25 allowed). Consider refactoring. Open
function importarDeLexML(elemento, resultado) {
if (!resultado) {
resultado = document.createDocumentFragment();
}
EditorArticulacaoController
has 21 functions (exceeds 20 allowed). Consider refactoring. Open
class EditorArticulacaoController {
/**
* Elemento do DOM que será utilizado como editor de articulação.
*
Function exports
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function (grunt) {
require("matchdep").filterAll("grunt-*").forEach(grunt.loadNpmTasks);
var webpackConfig = require("./webpack.config.js");
grunt.initConfig({