Showing 10 of 19 total issues
Function computeOrientationProperties
has a Cognitive Complexity of 21 (exceeds 6 allowed). Consider refactoring. Open
const computeOrientationProperties = (legsNoGravity, flags = { shuffle: false }) => {
const someLegTrios = flags.shuffle
? shuffleArray(SOME_LEG_ID_TRIOS.slice())
: SOME_LEG_ID_TRIOS
- 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 solve
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
solve(legDimensions, bodyContactPoints, groundContactPoints, axes) {
// prettier-ignore
this.params = {
bodyContactPoints, groundContactPoints, axes, legDimensions
}
Function constructor
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
constructor(
dimensions,
pose,
flags = { hasNoPoints: false, assumeKnownGroundPoints: false, wontRotate: false }
) {
Function solve
has a Cognitive Complexity of 13 (exceeds 6 allowed). Consider refactoring. Open
solve(legDimensions, bodyContactPoints, groundContactPoints, axes) {
// prettier-ignore
this.params = {
bodyContactPoints, groundContactPoints, axes, legDimensions
}
- 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 findTwoPivotPoints
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
const findTwoPivotPoints = (currentPoints, targetPoints, excludedPositions) => {
const targetPointsMap = targetPoints.reduce((acc, point) => {
acc[point.name] = point
return acc
}, {})
Function handleChange
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
handleChange(value) {
const { minVal, maxVal, stepVal } = this.props.rangeParams
const validity = this.myRef.current.validity
if (validity.badInput) {
Function simpleTwist
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
const simpleTwist = groundLegsNoGravity => {
const firstLeg = groundLegsNoGravity[0]
const allSameAlpha = groundLegsNoGravity.every(
leg => leg.pose.alpha === firstLeg.pose.alpha
Function findTwoPivotPoints
has a Cognitive Complexity of 10 (exceeds 6 allowed). Consider refactoring. Open
const findTwoPivotPoints = (currentPoints, targetPoints, excludedPositions) => {
const targetPointsMap = targetPoints.reduce((acc, point) => {
acc[point.name] = point
return acc
}, {})
- 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 mightTwist
has a Cognitive Complexity of 8 (exceeds 6 allowed). Consider refactoring. Open
const mightTwist = legsOnGround => {
let negativeAlphaCount = 0
let positiveAlphaCount = 0
for (let i = 0; i < legsOnGround.length; i++) {
- 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 constructor
has a Cognitive Complexity of 7 (exceeds 6 allowed). Consider refactoring. Open
constructor(
dimensions,
pose,
flags = { hasNoPoints: false, assumeKnownGroundPoints: false, wontRotate: 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"