Showing 7 of 11 total issues
Function UpdateProfileForm
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Confirmed
function UpdateProfileForm({ initialValues }) {
const [shouldShowMilitaryStep, handleShouldShowMilitaryStep] = useState(false);
// TODO: Abstract method to utility and use for all error-handling purposes
const generateError = errorObject => {
- 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 getPagination
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Confirmed
const getPagination = (
currentPage: PaginationPropsType['currentPage'],
totalPages: PaginationPropsType['totalPages'],
) => {
// maximum length of the Pagination Bar, should be an odd integer, default is 11
- 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 Pagination
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Confirmed
function Pagination({ currentPage, pathname, query, totalPages }: PaginationPropsType) {
/* Developer Errors */
if (process.env.NODE_ENV !== 'production') {
const isCurrentPageTooSmall = currentPage < 1;
- 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 MultiStepForm
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Confirmed
export function MultiStepForm({
steps,
initialValues,
onEachStepSubmit,
onFinalSubmit,
- 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 NavListItem
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Confirmed
function NavListItem({ sublinks, href, name, icon = null }: NavListItemPropsType) {
const [areSublinksVisible, setSublinksVisible] = useState(false);
const handleKeyDown = (event: React.KeyboardEvent, indexKeyedOn: number) => {
const lastSublinkIndex = sublinks && sublinks.length - 1;
- 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 RegistrationForm
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Confirmed
function RegistrationForm({ initialValues, onSubmit, onSuccess }) {
const [errorMessage, setErrorMessage] = useState('');
const handleSubmit = async (values, actions) => {
try {
- 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 mockPassword
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export default function mockPassword({
hasMinimumLength = true,
hasOneLowercaseChar = true,
hasOneUppercaseChar = true,
hasOneNumber = true,
- 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"