wmakeev/moysklad

View on GitHub

Showing 537 of 537 total issues

Function 467 has 55 lines of code (exceeds 25 allowed). Consider refactoring.
Open

/***/ ((module, __unused_webpack_exports, __webpack_require__) => {

"use strict";


Severity: Major
Found in bundle/umd/moysklad.js - About 2 hrs to fix

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    const invertFilterPart = fp => {
      if (!fp[1].not) {
        throw new MoyskladError(
          `${fp[1].name} не поддерживает селектор отрицания $not`
        )
    Severity: Major
    Found in src/tools/buildFilter.js and 1 other location - About 2 hrs to fix
    bundle/umd/moysklad.js on lines 1306..1313

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 79.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    function getApiDefaultVersion(api) {
      const apiVersion = DEFAULT_VERSIONS[api]
      const envKey = ENV_KEY[api] || api.replace(/\W/g, '_').toUpperCase()
      const envName = `MOYSKLAD_${envKey}_API_VERSION`
    
    
    Severity: Major
    Found in bundle/umd/moysklad.js and 1 other location - About 2 hrs to fix
    src/getApiDefaultVersion.js on lines 19..25

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 78.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    function getApiDefaultVersion(api) {
      const apiVersion = DEFAULT_VERSIONS[api]
      const envKey = ENV_KEY[api] || api.replace(/\W/g, '_').toUpperCase()
      const envName = `MOYSKLAD_${envKey}_API_VERSION`
    
    
    Severity: Major
    Found in src/getApiDefaultVersion.js and 1 other location - About 2 hrs to fix
    bundle/umd/moysklad.js on lines 455..461

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 78.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    class MoyskladRequestError extends MoyskladError {
      constructor(message, response) {
        super(message)
    
        if (response) {
    Severity: Major
    Found in bundle/umd/moysklad.js and 1 other location - About 2 hrs to fix
    src/errors.js on lines 14..24

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 77.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    const comparisonSelectors = Object.keys(selectors).reduce((res, key) => {
      const op = selectors[key]
      res['$' + key] = (
        op.collection ? createCollectionSelector : createValueSelector
      )(op)
    Severity: Major
    Found in src/tools/buildFilter.js and 1 other location - About 2 hrs to fix
    bundle/umd/moysklad.js on lines 1297..1303

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 77.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    class MoyskladRequestError extends MoyskladError {
      constructor(message, response) {
        super(message)
    
        if (response) {
    Severity: Major
    Found in src/errors.js and 1 other location - About 2 hrs to fix
    bundle/umd/moysklad.js on lines 368..378

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 77.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    const comparisonSelectors = Object.keys(selectors).reduce((res, key) => {
      const op = selectors[key]
      res['$' + key] = (
        op.collection ? createCollectionSelector : createValueSelector
      )(op)
    Severity: Major
    Found in bundle/umd/moysklad.js and 1 other location - About 2 hrs to fix
    src/tools/buildFilter.js on lines 59..65

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 77.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function ensure has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function ensure (matchers, argName, argType, value, check) {
      var memberType = null
      var valid = true
      var reason = null
      var match = null
    Severity: Major
    Found in bundle/umd/moysklad.js - About 2 hrs to fix

      Function buildFilter has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function buildFilter(filter) {
        if (!isPlainObject(filter)) {
          throw new MoyskladError('Поле filter должно быть объектом')
        }
      
      
      Severity: Minor
      Found in src/tools/buildFilter.js - About 1 hr to fix

        Function 60 has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
        
        'use srict'
        
        const { MoyskladError } = __webpack_require__(658)
        Severity: Minor
        Found in bundle/umd/moysklad.js - About 1 hr to fix

          Function buildFilter has 47 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = function buildFilter(filter) {
            if (!isPlainObject(filter)) {
              throw new MoyskladError('Поле filter должно быть объектом')
            }
          
          
          Severity: Minor
          Found in bundle/umd/moysklad.js - About 1 hr to fix

            Function getFilterParts has 44 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function getFilterParts(path, value) {
              const pathLen = path.length
              const curKey = pathLen ? path[pathLen - 1] : null
            
              switch (true) {
            Severity: Minor
            Found in bundle/umd/moysklad.js - About 1 hr to fix

              Function getFilterParts has 44 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function getFilterParts(path, value) {
                const pathLen = path.length
                const curKey = pathLen ? path[pathLen - 1] : null
              
                switch (true) {
              Severity: Minor
              Found in src/tools/buildFilter.js - About 1 hr to fix

                Function getFilterParts has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                Open

                function getFilterParts(path, value) {
                  const pathLen = path.length
                  const curKey = pathLen ? path[pathLen - 1] : null
                
                  switch (true) {
                Severity: Minor
                Found in src/tools/buildFilter.js - 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

                Function 565 has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                /***/ ((module) => {
                
                "use strict";
                
                
                
                Severity: Minor
                Found in bundle/umd/moysklad.js - About 1 hr to fix

                  Function parseUrl has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  module.exports = function parseUrl(...args) {
                    const { url, path } = have.strict(args, [
                      { url: 'url' },
                      { path: 'str or str arr' }
                    ])
                  Severity: Minor
                  Found in src/methods/parseUrl.js - About 1 hr to fix

                    Function parseUrl has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    module.exports = function parseUrl(...args) {
                      const { url, path } = have.strict(args, [
                        { url: 'url' },
                        { path: 'str or str arr' }
                      ])
                    Severity: Minor
                    Found in bundle/umd/moysklad.js - About 1 hr to fix

                      Function 831 has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
                      
                      "use strict";
                      
                      
                      
                      Severity: Minor
                      Found in bundle/umd/moysklad.js - About 1 hr to fix

                        Function buildQuery has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        module.exports = function buildQuery(query) {
                          // совместимость с remap 1.2
                          if (query.expand && query.limit == null) {
                            query.limit = 100
                          }
                        Severity: Minor
                        Found in bundle/umd/moysklad.js - About 1 hr to fix
                          Severity
                          Category
                          Status
                          Source
                          Language