Showing 61 of 64 total issues
Function encode_types
has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring. Open
exports.encode_types = function encode_types(item, type) {
try {
let value;
if (type == "u8") {
integer_validity_check(item);
- 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
Function verify_values
has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring. Open
verify_values(values, branch) {
const depth = (branch.match(/\//) || []).length;
if (typeof values !== "object") {
this.failure = `value of ${branch} must be an object`;
}
- 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
Function encode_types
has 81 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.encode_types = function encode_types(item, type) {
try {
let value;
if (type == "u8") {
integer_validity_check(item);
Function decode_types
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
exports.decode_types = function decode_types(item, type) {
try {
let value;
if (type == "u8") {
return decode_unsigned(item, 0xff);
- 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
Function generate_maps
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
exports.generate_maps = function generate_maps(protocol_root) {
const branches = explore.extract_branches(protocol_root, []);
const addr_path = [];
const roots = [];
const encode_map = {};
- 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
Function count_to_path
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
exports.count_to_path = function count_to_path(root, path) {
let data;
if ((protocolKey.DATA in root) == false) {
return null;
}
- 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
Function decode_types
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.decode_types = function decode_types(item, type) {
try {
let value;
if (type == "u8") {
return decode_unsigned(item, 0xff);
Function generate_maps
has 61 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.generate_maps = function generate_maps(protocol_root) {
const branches = explore.extract_branches(protocol_root, []);
const addr_path = [];
const roots = [];
const encode_map = {};
Function extract_decendants
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
exports.extract_decendants = function extract_decendants(root, path) {
const decendants = [];
const start = exports.get_struct(root, path);
if (start != null) {
if (protocolKey.DATA in start) {
- 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
Function extract_branches
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Open
exports.extract_branches = function extract_branches(root, path) {
const start = exports.get_struct(root, path);
const branches = [];
if (start != null) {
if (protocolKey.DATA in start) {
- 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
Function count_to_path
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.count_to_path = function count_to_path(root, path) {
let data;
if ((protocolKey.DATA in root) == false) {
return null;
}
Function verify_category
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
verify_category(config) {
if (("category" in config) == false) {
this.failure = "Missing category key in root data structure";
return 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
Function get_next_address
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
get_next_address(addr, depth) {
let next_addr;
if (addr == null) {
if (this.current_addr == null) {
next_addr = 0;
- 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
Function verify_version
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
verify_version(config) {
if (("version" in config) == false) {
this.failure = "Missing version key in root data structure";
}
else {
- 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
Function verify_category
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
verify_category(config) {
if (("category" in config) == false) {
this.failure = "Missing category key in root data structure";
return false;
}
Function _encode_packet
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
_encode_packet(_packet) {
let internal = "";
const start = this._config["category"][_packet.category];
if ((_packet.category in this._config.category) === 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
Function get_struct
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
exports.get_struct = function get_struct(root, path) {
if (path.length === 0) {
return root;
}
- 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
Function verify_values
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
verify_values(values, branch) {
const depth = (branch.match(/\//) || []).length;
if (typeof values !== "object") {
this.failure = `value of ${branch} must be an object`;
}
Function get_next_address
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
get_next_address(addr, depth) {
let next_addr;
if (addr == null) {
if (this.current_addr == null) {
next_addr = 0;
Function verify_item
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
verify_item(item, branch) {
if (typeof item !== "object") {
this.failure = `data item "${item}" in ${branch} must be an object`;
}
else {
- 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"