domjtalbot/nx-mesh

View on GitHub

Showing 29 of 553 total issues

Function setDefaults has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function setDefaults(host: Tree, options: NormalizedOptions) {
  const workspace = readWorkspaceConfiguration(host);

  if (!workspace.defaultProject) {
    workspace.defaultProject = options.projectName;
Severity: Minor
Found in packages/nx-mesh/src/generators/base/lib/set-defaults.ts - About 1 hr to fix

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

    export const nodeGenerator = async (tree: Tree, options: NormalizedOptions) => {
      if (options.isApp) {
        return initGenerator(tree, {
          js: options.js,
          skipFormat: options.skipFormat,
    Severity: Minor
    Found in packages/nx-mesh/src/generators/base/lib/node-generator.ts - About 1 hr to fix

      Function addProjectConfig has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

      export function addProjectConfig(tree: Tree, options: NormalizedOptions) {
        const {
          codegen,
          isApp,
          isLibrary,
      Severity: Minor
      Found in packages/nx-mesh/src/generators/base/lib/add-project-config.ts - 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 baseGenerator has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export async function baseGenerator(tree: Tree, baseOptions: BaseOptions) {
        const options = normalizeOptions(tree, baseOptions);
        const { isCypress, isApp, isLibrary, skipFormat } = options;
      
        const tasks: GeneratorCallback[] = [await nodeGenerator(tree, options)];
      Severity: Minor
      Found in packages/nx-mesh/src/generators/base/base.ts - About 1 hr to fix

        Function compileSwc has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export async function compileSwc(
          context: ExecutorContext,
          normalizedOptions: NormalizedSwcExecutorOptions,
          postCompilationCallback: () => Promise<void>
        ) {

          Function addDependencies has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export function addDependencies(
            host: Tree,
            options: Pick<CreateMeshExampleOptions, 'example' | 'codegen'>
          ) {
            let exampleDeps = {

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

            export function setDefaults(host: Tree, options: NormalizedOptions) {
              const workspace = readWorkspaceConfiguration(host);
            
              if (!workspace.defaultProject) {
                workspace.defaultProject = options.projectName;
            Severity: Minor
            Found in packages/nx-mesh/src/generators/base/lib/set-defaults.ts - 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

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

            export function normalizeOptions(
              options: SwcExecutorOptions,
              contextRoot: string,
              sourceRoot?: string,
              projectRoot?: string
            Severity: Minor
            Found in packages/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts - 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

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

              (...tasks: GeneratorCallback[]): GeneratorCallback =>
              async () => {
                for (const task of tasks) {
                  if (task instanceof Promise) {
                    await task();
            Severity: Minor
            Found in packages/nx-mesh/src/utils/run-tasks-in-serial/run-tasks-in-serial.ts - 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