sgmonda/stdio

View on GitHub

Showing 5 of 5 total issues

Function getopt has 67 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function getopt(config: Config = {}, command: string[]): GetoptResponse {
  const rawArgs = command.slice(2);
  const result: GetoptPartialResponse = {};
  const args: string[] = [];
  const state: ParsingState = {
Severity: Major
Found in src/getopt.ts - About 2 hrs to fix

    File getopt.ts has 275 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    const FAILURE = 1;
    const POSITIONAL_ARGS_KEY = 'args';
    const ERROR_PREFFIX = 'ERROR#GETOPT: ';
    
    export interface Config {
    Severity: Minor
    Found in src/getopt.ts - About 2 hrs to fix

      Function checkRequiredParams has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      function checkRequiredParams(config: Config, input: GetoptPartialResponse): void {
        if (config._meta_ && typeof config._meta_ === 'object') {
          const { args = 0, minArgs = 0, maxArgs = 0 } = config._meta_;
      
          let providedArgs = 0;
      Severity: Minor
      Found in src/getopt.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 getHelpMessage has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function getHelpMessage(config: Config, programName: string): string {
        const strLines = [
          'USAGE: node ' + programName + ' [OPTION1] [OPTION2]... arg1 arg2...',
          'The following options are supported:',
        ];
      Severity: Minor
      Found in src/getopt.ts - About 1 hr to fix

        Function checkRequiredParams has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function checkRequiredParams(config: Config, input: GetoptPartialResponse): void {
          if (config._meta_ && typeof config._meta_ === 'object') {
            const { args = 0, minArgs = 0, maxArgs = 0 } = config._meta_;
        
            let providedArgs = 0;
        Severity: Minor
        Found in src/getopt.ts - About 1 hr to fix
          Severity
          Category
          Status
          Source
          Language