XYOracleNetwork/clients

View on GitHub

Showing 134 of 134 total issues

Function connect has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

export const connect = async (attempts = 60, interval = 500): Promise<NodeInstance> => {
  // TODO: Configurable via config or dynamically determined
  const apiDomain = process.env.API_DOMAIN || 'http://localhost:8080'
  const apiConfig = { apiDomain }
  printLine(`Connecting to Node at: ${apiDomain}`)
Severity: Minor
Found in packages/cli/src/lib/connect/connect.ts - 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

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

export const getEtherscanProvider = (): Provider => {
  if (instance) return instance
  const apiKey = getEtherscanProviderConfig()
  instance = new EtherscanProvider('homestead', apiKey)
  return instance
packages/automation-witness-server/src/Providers/getAlchemyProvider.ts on lines 7..12

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

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

export const getAlchemyProvider = (): Provider => {
  if (instance) return instance
  const apiKey = getAlchemyProviderConfig()
  instance = new AlchemyProvider('homestead', apiKey)
  return instance
packages/automation-witness-server/src/Providers/getEtherscanProvider.ts on lines 7..12

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

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

export const getSentinelByNameFromChildNode = async (name: string, childNodeName: string): Promise<SentinelInstance> => {
  return asSentinelInstance(await getModuleByNameFromChildNode(name, childNodeName), 'Failed to cast sentinel')
}
packages/node/packages/express/packages/test/src/testUtil/Archivist/getArchivist.ts on lines 23..25
packages/node/packages/express/packages/test/src/testUtil/Diviner/getDiviner.ts on lines 14..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 52.

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

export const getDivinerByNameFromChildNode = async (name: string, childNodeName: string): Promise<DivinerInstance> => {
  return asDivinerInstance(await getModuleByNameFromChildNode(name, childNodeName), 'Failed to cast diviner')
}
packages/node/packages/express/packages/test/src/testUtil/Archivist/getArchivist.ts on lines 23..25
packages/node/packages/express/packages/test/src/testUtil/Sentinel/getSentinel.ts on lines 13..15

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

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

export const getArchivistByNameFromChildNode = async (name: string, childNodeName: string): Promise<ArchivistInstance> => {
  return asArchivistInstance(await getModuleByNameFromChildNode(name, childNodeName), 'Failed to cast archivist')
}
packages/node/packages/express/packages/test/src/testUtil/Diviner/getDiviner.ts on lines 14..16
packages/node/packages/express/packages/test/src/testUtil/Sentinel/getSentinel.ts on lines 13..15

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

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

  locator.register(
    new ModuleFactory(EvmCallWitness, {
      config: { abi: ERC1155__factory.abi },
      providers: () => getProvidersFromEnv(8),
    }),
packages/node/packages/express/packages/dependencies/src/Module/Witness/addWitnessModuleFactories.ts on lines 28..34
packages/node/packages/express/packages/dependencies/src/Module/Witness/addWitnessModuleFactories.ts on lines 36..42

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

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 nftCollectionInfoPayload = (await archivist.get([nftCollectionInfoHash as Hash])).find(isNftCollectionInfo) as WithSources<
      WithMeta<NftCollectionInfo>
    >
packages/node/packages/express/packages/dependencies/src/witnessNftCollections.ts on lines 150..150

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

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

export const isPayloadSchemaRule = (rule: PayloadRule): rule is PayloadSchemaRule => {
  return !!(rule as PayloadSchemaRule)?.schema
}
packages/node/packages/core/packages/model/src/Pointer/PayloadRules/TypePredicates/isPayloadAddressRule.ts on lines 4..6

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

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

export const isPayloadAddressRule = (rule: PayloadRule): rule is PayloadAddressRule => {
  return !!(rule as PayloadAddressRule)?.address
}
packages/node/packages/core/packages/model/src/Pointer/PayloadRules/TypePredicates/isPayloadSchemaRule.ts on lines 4..6

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

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 nftInfo = (await archivist.get([nftInfoHash as Hash])).find(isNftInfo) as WithSources<WithMeta<NftInfo>>
packages/node/packages/express/packages/dependencies/src/witnessNftCollections.ts on lines 146..148

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

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

  locator.register(
    new ModuleFactory(EvmCallWitness, {
      config: { abi: ERC721Enumerable__factory.abi },
      providers: () => getProvidersFromEnv(8),
    }),
packages/node/packages/express/packages/dependencies/src/Module/Witness/addWitnessModuleFactories.ts on lines 28..34
packages/node/packages/express/packages/dependencies/src/Module/Witness/addWitnessModuleFactories.ts on lines 44..50

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

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

  locator.register(
    new ModuleFactory(EvmCallWitness, {
      config: { abi: ERC721__factory.abi },
      providers: () => getProvidersFromEnv(8),
    }),
packages/node/packages/express/packages/dependencies/src/Module/Witness/addWitnessModuleFactories.ts on lines 36..42
packages/node/packages/express/packages/dependencies/src/Module/Witness/addWitnessModuleFactories.ts on lines 44..50

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

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 configureMemoryNode has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

export const configureMemoryNode = async (container: Container, _memoryNode?: NodeInstance, _account?: AccountInstance) => {
  const node = await loadNodeFromConfig(container)
  // const node: NodeInstance = memoryNode ?? (await MemoryNode.create({ account, config }))
  container.bind<NodeInstance>(TYPES.Node).toConstantValue(node)
  const configHashes = process.env.CONFIG_HASHES

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 defineJobs has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

export const defineJobs = (jobQueue: JobQueue, jobs: Job[]) => {
  jobs.map((job) => {
    const { name, task } = job
    jobQueue.define(name, options, task)
    if (job.onComplete) jobQueue.on(`complete:${name}`, job.onComplete)
Severity: Minor
Found in packages/modules-mongo/packages/diviner/src/JobQueue/defineJobs.ts - 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

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

const mod: CommandModule<EmptyObject, BaseArguments> = {
  aliases,
  command,
  deprecated,
  describe,
Severity: Major
Found in packages/cli/src/command/commands/archivist.ts and 20 other locations - About 40 mins to fix
packages/cli/src/command/commands/module/describe.ts on lines 28..34
packages/cli/src/command/commands/module/discover.ts on lines 28..34
packages/cli/src/command/commands/module/previousHash.ts on lines 28..34
packages/cli/src/command/commands/module/queries.ts on lines 28..34
packages/cli/src/command/commands/node/describe.ts on lines 30..36
packages/cli/src/command/commands/node/describe/address.ts on lines 24..30
packages/cli/src/command/commands/node/describe/children.ts on lines 35..41
packages/cli/src/command/commands/node/describe/queries.ts on lines 26..32
packages/cli/src/command/commands/node/discover.ts on lines 27..33
packages/cli/src/command/commands/node/previousHash.ts on lines 27..33
packages/cli/src/command/commands/node/start.ts on lines 59..65
packages/cli/src/command/commands/node/stop.ts on lines 33..39
packages/cli/src/command/commands/archivist/describe.ts on lines 27..33
packages/cli/src/command/commands/archivist/discover.ts on lines 27..33
packages/cli/src/command/commands/archivist/get.ts on lines 36..42
packages/cli/src/command/commands/archivist/insert.ts on lines 27..33
packages/cli/src/command/commands/config/show.ts on lines 42..48
packages/cli/src/command/commands/diviner.ts on lines 33..39
packages/cli/src/command/commands/module.ts on lines 31..37
packages/cli/src/command/commands/node.ts on lines 31..37

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

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

  async insertOne(item: OptionalUnlessRequiredId<T>) {
    return await this.useCollection(async (collection: Collection<T>) => {
      return await collection.insertOne(item)
    })
  }
Severity: Minor
Found in packages/mongo/src/Base.ts and 1 other location - About 40 mins to fix
packages/mongo/src/Base.ts on lines 42..46

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

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

const mod: CommandModule<EmptyObject, BaseArguments> = {
  aliases,
  command,
  deprecated,
  describe,
Severity: Major
Found in packages/cli/src/command/commands/node/discover.ts and 20 other locations - About 40 mins to fix
packages/cli/src/command/commands/module/describe.ts on lines 28..34
packages/cli/src/command/commands/module/discover.ts on lines 28..34
packages/cli/src/command/commands/module/previousHash.ts on lines 28..34
packages/cli/src/command/commands/module/queries.ts on lines 28..34
packages/cli/src/command/commands/node/describe.ts on lines 30..36
packages/cli/src/command/commands/node/describe/address.ts on lines 24..30
packages/cli/src/command/commands/node/describe/children.ts on lines 35..41
packages/cli/src/command/commands/node/describe/queries.ts on lines 26..32
packages/cli/src/command/commands/node/previousHash.ts on lines 27..33
packages/cli/src/command/commands/node/start.ts on lines 59..65
packages/cli/src/command/commands/node/stop.ts on lines 33..39
packages/cli/src/command/commands/archivist.ts on lines 33..39
packages/cli/src/command/commands/archivist/describe.ts on lines 27..33
packages/cli/src/command/commands/archivist/discover.ts on lines 27..33
packages/cli/src/command/commands/archivist/get.ts on lines 36..42
packages/cli/src/command/commands/archivist/insert.ts on lines 27..33
packages/cli/src/command/commands/config/show.ts on lines 42..48
packages/cli/src/command/commands/diviner.ts on lines 33..39
packages/cli/src/command/commands/module.ts on lines 31..37
packages/cli/src/command/commands/node.ts on lines 31..37

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

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

const mod: CommandModule<EmptyObject, BaseArguments> = {
  aliases,
  command,
  deprecated,
  describe,
Severity: Major
Found in packages/cli/src/command/commands/node.ts and 20 other locations - About 40 mins to fix
packages/cli/src/command/commands/module/describe.ts on lines 28..34
packages/cli/src/command/commands/module/discover.ts on lines 28..34
packages/cli/src/command/commands/module/previousHash.ts on lines 28..34
packages/cli/src/command/commands/module/queries.ts on lines 28..34
packages/cli/src/command/commands/node/describe.ts on lines 30..36
packages/cli/src/command/commands/node/describe/address.ts on lines 24..30
packages/cli/src/command/commands/node/describe/children.ts on lines 35..41
packages/cli/src/command/commands/node/describe/queries.ts on lines 26..32
packages/cli/src/command/commands/node/discover.ts on lines 27..33
packages/cli/src/command/commands/node/previousHash.ts on lines 27..33
packages/cli/src/command/commands/node/start.ts on lines 59..65
packages/cli/src/command/commands/node/stop.ts on lines 33..39
packages/cli/src/command/commands/archivist.ts on lines 33..39
packages/cli/src/command/commands/archivist/describe.ts on lines 27..33
packages/cli/src/command/commands/archivist/discover.ts on lines 27..33
packages/cli/src/command/commands/archivist/get.ts on lines 36..42
packages/cli/src/command/commands/archivist/insert.ts on lines 27..33
packages/cli/src/command/commands/config/show.ts on lines 42..48
packages/cli/src/command/commands/diviner.ts on lines 33..39
packages/cli/src/command/commands/module.ts on lines 31..37

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

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

const mod: CommandModule<EmptyObject, Arguments> = {
  aliases,
  command,
  deprecated,
  describe,
Severity: Major
Found in packages/cli/src/command/commands/archivist/insert.ts and 20 other locations - About 40 mins to fix
packages/cli/src/command/commands/module/describe.ts on lines 28..34
packages/cli/src/command/commands/module/discover.ts on lines 28..34
packages/cli/src/command/commands/module/previousHash.ts on lines 28..34
packages/cli/src/command/commands/module/queries.ts on lines 28..34
packages/cli/src/command/commands/node/describe.ts on lines 30..36
packages/cli/src/command/commands/node/describe/address.ts on lines 24..30
packages/cli/src/command/commands/node/describe/children.ts on lines 35..41
packages/cli/src/command/commands/node/describe/queries.ts on lines 26..32
packages/cli/src/command/commands/node/discover.ts on lines 27..33
packages/cli/src/command/commands/node/previousHash.ts on lines 27..33
packages/cli/src/command/commands/node/start.ts on lines 59..65
packages/cli/src/command/commands/node/stop.ts on lines 33..39
packages/cli/src/command/commands/archivist.ts on lines 33..39
packages/cli/src/command/commands/archivist/describe.ts on lines 27..33
packages/cli/src/command/commands/archivist/discover.ts on lines 27..33
packages/cli/src/command/commands/archivist/get.ts on lines 36..42
packages/cli/src/command/commands/config/show.ts on lines 42..48
packages/cli/src/command/commands/diviner.ts on lines 33..39
packages/cli/src/command/commands/module.ts on lines 31..37
packages/cli/src/command/commands/node.ts on lines 31..37

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

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

Severity
Category
Status
Source
Language