DEFRA/hapi-pg-rest-api

View on GitHub

Showing 19 of 19 total issues

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

exports.down = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180111093803-create-table-down.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180111093803-create-table.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.up = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180306114914-add-email-field-up.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180306114914-add-email-field.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.down = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180306114914-add-email-field-down.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180306114914-add-email-field.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.up = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180406144545-json-field-type-up.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180406144545-json-field-type.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.up = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180111093803-create-table-up.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180111093803-create-table.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.down = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180307100006-numeric-primary-key-down.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180307100006-numeric-primary-key.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.down = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180406144545-json-field-type-down.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180406144545-json-field-type.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28

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 132.

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 10 locations. Consider refactoring.
Open

exports.up = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180307100006-numeric-primary-key-up.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180307100006-numeric-primary-key.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.up = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180122170909-add-auto-pk-table-up.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180122170909-add-auto-pk-table.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 30..43
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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 10 locations. Consider refactoring.
Open

exports.down = function (db) {
  const filePath = path.join(__dirname, 'sqls', '20180122170909-add-auto-pk-table-down.sql')
  return new Promise(function (resolve, reject) {
    fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
      if (err) return reject(err)
Severity: Major
Found in migrations/20180122170909-add-auto-pk-table.js and 9 other locations - About 4 hrs to fix
migrations/20180111093803-create-table.js on lines 15..28
migrations/20180111093803-create-table.js on lines 30..43
migrations/20180122170909-add-auto-pk-table.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 15..28
migrations/20180306114914-add-email-field.js on lines 30..43
migrations/20180307100006-numeric-primary-key.js on lines 15..28
migrations/20180307100006-numeric-primary-key.js on lines 30..43
migrations/20180406144545-json-field-type.js on lines 15..28
migrations/20180406144545-json-field-type.js on lines 30..43

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 132.

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

module.exports = new HAPIRestAPI({
  table: 'autopk_test',
  connection: pool,
  primaryKey: 'id',
  endpoint: '/api/1.0/autopk',
Severity: Major
Found in auto-pk-api.js and 1 other location - About 2 hrs to fix
numeric-pk-api.js on lines 5..16

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 76.

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

module.exports = new HAPIRestAPI({
  table: 'numericpk_test',
  connection: pool,
  primaryKey: 'id',
  endpoint: '/api/1.0/numericpk',
Severity: Major
Found in numeric-pk-api.js and 1 other location - About 2 hrs to fix
auto-pk-api.js on lines 5..16

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 76.

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 getSchema has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const getSchema = async (request, h) => {
  const config = request.route.settings.plugins.hapiPgRestAPI
  const { table, primaryKey, primaryKeyAuto, primaryKeyGuid } = config
  const required = []

Severity: Minor
Found in src/schema-controller.js - About 1 hr to fix

    Function create has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const create = async (request, h) => {
      const config = request.route.settings.plugins.hapiPgRestAPI
      const repo = manager.get(config.name)
      const { columns, data: payload } = await getRequestData(request, config)
    
    
    Severity: Minor
    Found in src/controller.js - About 1 hr to fix

      Function updateOne has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const updateOne = async (request, h) => {
        const config = request.route.settings.plugins.hapiPgRestAPI
        const repo = manager.get(config.name)
        const { columns, filter } = await getRequestData(request, config)
      
      
      Severity: Minor
      Found in src/controller.js - About 1 hr to fix

        Function makeRequest has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          async makeRequest (options) {
            try {
              return await this.rp(options)
            } catch (error) {
              if (error.statusCode < 500) {
        Severity: Minor
        Found in src/api-client.js - About 35 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

        Avoid too many return statements within this function.
        Open

            return errorReply(error, h)
        Severity: Major
        Found in src/controller.js - About 30 mins to fix

          Function createRoute has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          const createRoute = (config, method, handler, isMany = false) => {
            const { endpoint, table } = config
            const description = `${method} ${isMany ? 'many' : 'single'} ${table} ${isMany ? 'records' : 'record'}`
            const path = (isMany || method === 'POST') ? endpoint : `${endpoint}/{id*}`
            const route = {
          Severity: Minor
          Found in src/route-factory.js - About 25 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

          Function getRequestData has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          const getRequestData = (request, config) => {
            const { filter: filterStr, sort, pagination, columns } = request.query
          
            const filter = filterStr ? JSON.parse(filterStr) : {}
          
          
          Severity: Minor
          Found in src/helpers.js - About 25 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

          Severity
          Category
          Status
          Source
          Language