metanorma/metanorma-iso

View on GitHub

Showing 49 of 49 total issues

Class WordConvert has 31 methods (exceeds 20 allowed). Consider refactoring.
Open

    class WordConvert < IsoDoc::WordConvert
      def initialize(options)
        @libdir = File.dirname(__FILE__)
        super
        init_dis(options)
Severity: Minor
Found in lib/isodoc/iso/word_convert.rb - About 3 hrs to fix

    Class Converter has 29 methods (exceeds 20 allowed). Consider refactoring.
    Open

        class Converter < Standoc::Converter
          def metadata_id(node, xml)
            if id = node.attr("docidentifier")
              xml.docidentifier id, **attr_code(type: "ISO", primary: "true")
            else iso_id(node, xml)
    Severity: Minor
    Found in lib/metanorma/iso/front_id.rb - About 3 hrs to fix

      Class PresentationXMLConvert has 26 methods (exceeds 20 allowed). Consider refactoring.
      Open

          class PresentationXMLConvert < IsoDoc::PresentationXMLConvert
            def convert_i18n_init(docxml)
              super
              update_i18n(docxml)
            end
      Severity: Minor
      Found in lib/isodoc/iso/presentation_xml_convert.rb - About 3 hrs to fix

        Class Metadata has 25 methods (exceeds 20 allowed). Consider refactoring.
        Open

            class Metadata < IsoDoc::Metadata
              def initialize(lang, script, locale, i18n)
                super
                DATETYPES.each { |w| @metadata["#{w.gsub(/-/, '_')}date".to_sym] = nil }
                set(:obsoletes, nil)
        Severity: Minor
        Found in lib/isodoc/iso/metadata.rb - About 2 hrs to fix

          Class Converter has 23 methods (exceeds 20 allowed). Consider refactoring.
          Open

              class Converter < Standoc::Converter
                def extract_text(node)
                  node.nil? and return ""
                  node1 = Nokogiri::XML.fragment(node.to_s)
                  node1.xpath(".//link | .//locality | .//localityStack | .//stem")
          Severity: Minor
          Found in lib/metanorma/iso/validate_style.rb - About 2 hrs to fix

            Class WordDISConvert has 23 methods (exceeds 20 allowed). Consider refactoring.
            Open

                class WordDISConvert < WordConvert
                  STYLESMAP = {
                    AltTerms: "AdmittedTerm",
                    TableFootnote: "Tablefootnote",
                    formula: "Formula",
            Severity: Minor
            Found in lib/isodoc/iso/word_dis_styles.rb - About 2 hrs to fix

              Class Xref has 21 methods (exceeds 20 allowed). Consider refactoring.
              Open

                  class Xref < IsoDoc::Xref
                    attr_accessor :anchors_previous, :anchors
              
                    def clause_order_main(docxml)
                      if @klass.amd?(docxml)
              Severity: Minor
              Found in lib/isodoc/iso/xref.rb - About 2 hrs to fix

                Method see_erefs_validate has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                Open

                      def see_erefs_validate(root)
                        @lang == "en" or return
                        root.xpath("//eref").each do |t|
                          prec = t.at("./preceding-sibling::text()[last()]")
                          next unless !prec.nil? && /\b(see|refer to)\p{Zs}*\Z/mi.match(prec)
                Severity: Minor
                Found in lib/metanorma/iso/validate.rb - About 1 hr to fix

                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

                Method output has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                      def output(isodoc_node, inname, outname, format, options={})
                        options_preprocess(options)
                        case format
                        when :html
                          IsoDoc::Iso::HtmlConvert.new(options)
                Severity: Minor
                Found in lib/metanorma/iso/processor.rb - About 1 hr to fix

                  Method see_xrefs_validate has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def see_xrefs_validate(root)
                          @lang == "en" or return
                          root.xpath("//xref").each do |t|
                            preceding = t.at("./preceding-sibling::text()[last()]")
                            next unless !preceding.nil? &&
                  Severity: Minor
                  Found in lib/metanorma/iso/validate.rb - About 55 mins to fix

                  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

                  Method status_abbrev has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def status_abbrev(stage, _substage, iter, draft, doctype)
                          return "" unless stage
                  
                          if %w(technical-report technical-specification).include?(doctype)
                            stage = "DTS" if stage == "DIS"
                  Severity: Minor
                  Found in lib/isodoc/iso/metadata.rb - About 55 mins to fix

                  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

                  Method figure_parse1 has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def figure_parse1(node, out)
                          measurement_units(node, out)
                          out.div **figure_attrs(node) do |div|
                            node.children.each do |n|
                              figure_key(out) if n.name == "dl"
                  Severity: Minor
                  Found in lib/isodoc/iso/base_convert.rb - About 55 mins to fix

                  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

                  Method committee_contributors has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def committee_contributors(node, xml, approval, agency)
                          metadata_approval_committee_types(approval ? node : nil).each do |v|
                            node.attr("#{v}-number") or next
                            node.attr(v) or node.set_attr(v, "")
                            o = { source: [v], role: approval ? "authorizer" : "author",
                  Severity: Minor
                  Found in lib/metanorma/iso/front_contributor.rb - About 45 mins to fix

                  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

                  Method onlychild_clause_validate has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def onlychild_clause_validate(root)
                          root.xpath(Standoc::Utils::SUBCLAUSE_XPATH).each do |c|
                            next unless c.xpath("../clause").size == 1
                  
                            title = c.at("./title")
                  Severity: Minor
                  Found in lib/metanorma/iso/validate_section.rb - About 45 mins to fix

                  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

                  Method title has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def title(isoxml, _out)
                          lang = case @lang
                                 when "fr", "ru" then @lang
                                 else "en"
                                 end
                  Severity: Minor
                  Found in lib/isodoc/iso/metadata.rb - About 45 mins to fix

                  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

                  Method subtitle has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def subtitle(isoxml, _out)
                          lang = @lang == "en" ? "fr" : "en"
                          tp = title_parts(isoxml, lang)
                          tn = title_nums(isoxml)
                  
                  
                  Severity: Minor
                  Found in lib/isodoc/iso/metadata.rb - About 45 mins to fix

                  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

                  Method default_fonts has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                        def default_fonts(options)
                          {
                            bodyfont: (if options[:script] == "Hans"
                                         '"Source Han Sans",serif'
                                       else
                  Severity: Minor
                  Found in lib/isodoc/iso/html_convert.rb - About 45 mins to fix

                  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

                  Method style_two_regex_not_prev has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                        def style_two_regex_not_prev(n, text, regex, re_prev, warning)
                  Severity: Minor
                  Found in lib/metanorma/iso/validate_style.rb - About 35 mins to fix

                    Method output has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                          def output(isodoc_node, inname, outname, format, options={})
                    Severity: Minor
                    Found in lib/metanorma/iso/processor.rb - About 35 mins to fix

                      Method term_hash_init has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                            def term_hash_init(hash, term, term2, term3, label)
                      Severity: Minor
                      Found in lib/isodoc/iso/index.rb - About 35 mins to fix
                        Severity
                        Category
                        Status
                        Source
                        Language