Showing 14 of 16 total issues
Method read_line
has a Cognitive Complexity of 86 (exceeds 5 allowed). Consider refactoring. Open
def read_line(prompt = "", value: "", echo: true, raw: true,
nonblock: false, exit_keys: nil)
line = Line.new(value, prompt: prompt)
screen_width = TTY::Screen.width
history_in_use = false
- Read upRead up
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
Method read_line
has 93 lines of code (exceeds 25 allowed). Consider refactoring. Open
def read_line(prompt = "", value: "", echo: true, raw: true,
nonblock: false, exit_keys: nil)
line = Line.new(value, prompt: prompt)
screen_width = TTY::Screen.width
history_in_use = false
File reader.rb
has 312 lines of code (exceeds 250 allowed). Consider refactoring. Open
require "tty-cursor"
require "tty-screen"
require "wisper"
require_relative "reader/completer"
Class Line
has 28 methods (exceeds 20 allowed). Consider refactoring. Open
class Line
ANSI_MATCHER = /(\[)?\033(\[)?[;?\d]*[\dA-Za-z](\])?/
# The word break characters list used by shell
DEFAULT_WORD_BREAK_CHARACTERS = " \t\n\"\\'`@$><=|&{("
Class Reader
has 24 methods (exceeds 20 allowed). Consider refactoring. Open
class Reader
include Wisper::Publisher
# Key codes
BACKSPACE = 8
Method read_multiline
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
def read_multiline(prompt = "", value: "", echo: true, raw: true,
nonblock: false, exit_keys: EXIT_KEYS)
lines = []
stop = false
clear_value = !value.to_s.empty?
- Read upRead up
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
Method complete_next
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def complete_next(line, direction: :next)
return if completions.empty?
previous_suggestion = completions.get
first_or_last = direction == :previous ? :first? : :last?
- Read upRead up
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
Method get_char
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def get_char(echo: true, raw: false, nonblock: false)
mode.raw(raw) do
mode.echo(echo) do
if nonblock
input.wait_readable(TIMEOUT) ? input.getc : nil
- Read upRead up
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
Method get_codes
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def get_codes(echo: true, raw: false, nonblock: false, codes: [])
char = console.get_char(echo: echo, raw: raw, nonblock: nonblock)
handle_interrupt if console.keys[char] == :ctrl_c
return if char.nil?
- Read upRead up
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 deeply nested control flow statements. Open
elsif key_name == :down
@history.replace(line.text) if history_in_use
if history_next?
line.replace(history_next)
elsif history_in_use
Avoid deeply nested control flow statements. Open
@history.replace(line.text) if history_in_use
Avoid deeply nested control flow statements. Open
if history_previous?
line.replace(history_previous(skip: !history_in_use))
history_in_use = true
end
Method word_start_pos
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def word_start_pos(from: @cursor, before: true)
# move back or forward by one character when at a word boundary
if word_boundary?
from = before ? from - 1 : from + 1
end
- Read upRead up
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
Method []=
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def []=(i, chars)
edit_mode
if i.is_a?(Range)
@text[i] = chars
- Read upRead up
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"