Galooshi/import-js

View on GitHub

Showing 85 of 95 total issues

File Importer.js has 441 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// @flow
import path from 'path';

import requireRelative from 'require-relative';

Severity: Minor
Found in lib/Importer.js - About 6 hrs to fix

    File configurationSchema.js has 422 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import Ajv from 'ajv';
    import ajvInstanceof from 'ajv-keywords/dist/keywords/instanceof';
    import globals from 'globals';
    import findPackageDependencies from './findPackageDependencies';
    import { DEFAULT_PARSER_PLUGINS } from './parse.js';
    Severity: Minor
    Found in lib/configurationSchema.js - About 6 hrs to fix

      Function convertToImportStatement has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
      Open

      function convertToImportStatement(
        node: Object,
        source: string,
      ): ?ImportStatement {
        if (node.type === 'ImportDeclaration') {
      Severity: Minor
      Found in lib/findCurrentImports.js - About 4 hrs 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

      File ExportsStorage.js has 368 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import sqlite3 from 'sqlite3';
      
      import lastUpdate from './lastUpdate';
      
      const MAX_CHUNK_SIZE = 100;
      Severity: Minor
      Found in lib/ExportsStorage.js - About 4 hrs to fix

        Function normalizeNode has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
        Open

        function normalizeNode(node, context) {
          const { key, parent } = context;
          if (!parent) {
            return undefined;
          }
        Severity: Minor
        Found in lib/visitIdentifierNodes.js - About 4 hrs 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

        File findExports.js has 354 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        import fs from 'fs';
        import path from 'path';
        
        import requireRelative from 'require-relative';
        
        
        Severity: Minor
        Found in lib/findExports.js - About 4 hrs to fix

          Function convertToImportStatement has 88 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function convertToImportStatement(
            node: Object,
            source: string,
          ): ?ImportStatement {
            if (node.type === 'ImportDeclaration') {
          Severity: Major
          Found in lib/findCurrentImports.js - About 3 hrs to fix

            Function processQueue has 70 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              processQueue(done) {
                const file = this.queue.pop();
                if (!file) {
                  this.processingQueue = false;
                  winston.debug('Queue empty');
            Severity: Major
            Found in lib/ModuleFinder.js - About 2 hrs to fix

              Function normalizeNode has 66 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function normalizeNode(node, context) {
                const { key, parent } = context;
                if (!parent) {
                  return undefined;
                }
              Severity: Major
              Found in lib/visitIdentifierNodes.js - About 2 hrs to fix

                Function daemon has 66 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                export default function daemon(parentPid, pathToLogFile) {
                  process.stdout.write(
                    `ImportJS (v${version()}) DAEMON active. Logs will go to: ${pathToLogFile}\n`,
                  );
                  if (parentPid) {
                Severity: Major
                Found in lib/daemon.js - About 2 hrs to fix

                  File ImportStatement.js has 269 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  // @flow
                  function isLineTooLong(line: string, maxLineLength: number): boolean {
                    return !!maxLineLength && line.length > maxLineLength;
                  }
                  
                  
                  Severity: Minor
                  Found in lib/ImportStatement.js - About 2 hrs to fix

                    Function findCommonJSExports has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function findCommonJSExports(
                      node,
                      { definedNames, absolutePathToFile, aliasesForExports },
                    ) {
                      if (node.type !== 'ExpressionStatement') {
                    Severity: Minor
                    Found in lib/findExports.js - About 2 hrs 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 subscribe has 58 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      subscribe({
                        client,
                        fbWatch,
                        relativePath,
                      }: {
                    Severity: Major
                    Found in lib/Watcher.js - About 2 hrs to fix

                      Function extractExportsFromMeteorPackage has 57 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function extractExportsFromMeteorPackage(
                        projectRootDir: string,
                        pkg: string,
                        pkgVersion: string,
                      ): ?Array<string> {
                      Severity: Major
                      Found in lib/environments/meteorEnvironment.js - About 2 hrs to fix

                        Function findJsModulesFromModuleFinder has 56 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function findJsModulesFromModuleFinder(
                          config: Configuration,
                          normalizedName: string,
                          variableName: string,
                          finder: ModuleFinder,
                        Severity: Major
                        Found in lib/findJsModulesFor.js - About 2 hrs to fix

                          Function init has 54 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                            init(dbFilename) {
                              return new Promise((resolve, reject) => {
                                this.db = new sqlite3.Database(dbFilename);
                                this.db.all('PRAGMA table_info(exports)', (pragmaErr, result) => {
                                  if (pragmaErr) {
                          Severity: Major
                          Found in lib/ExportsStorage.js - About 2 hrs to fix

                            Function findCurrentImports has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            export default function findCurrentImports(
                              config: Configuration,
                              currentFileContent: string,
                              ast: Object,
                            ): Object {
                            Severity: Minor
                            Found in lib/findCurrentImports.js - About 1 hr to fix

                              Function merge has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                merge(importStatement: ImportStatement) {
                                  if (
                                    importStatement.defaultImport &&
                                    this.defaultImport !== importStatement.defaultImport
                                  ) {
                              Severity: Minor
                              Found in lib/ImportStatement.js - About 1 hr to fix

                                Function fixImports has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                  fixImports(): Promise<Object> {
                                    const undefinedVariables = findUndefinedIdentifiers(
                                      this.ast,
                                      this.config.get('globals'),
                                    );
                                Severity: Minor
                                Found in lib/Importer.js - About 1 hr to fix

                                  Function addImports has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                    addImports(imports: Object): Promise<Object> {
                                      return new Promise((resolve: Function, reject: Function) => {
                                        const oldImports = this.findCurrentImports();
                                        const newImports = oldImports.imports.clone();
                                  
                                  
                                  Severity: Minor
                                  Found in lib/Importer.js - About 1 hr to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language