> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codeant.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Maintainability

<AccordionGroup>
  <Accordion title="duplicate-path-assignment">
    path for `$URL` is uselessly assigned twice
  </Accordion>

  <Accordion title="conflicting-path-assignment">
    The path for `$URL` is assigned once to view `$VIEW` and once to `$DIFFERENT_VIEW`, which can lead to unexpected behavior. Verify what the intended target view is and delete the other route.
  </Accordion>

  <Accordion title="duplicate-path-assignment-different-names">
    path for `$URL` is assigned twice with different names
  </Accordion>

  <Accordion title="duplicate-name-assignment">
    The name `$NAME` is used for both `$URL` and `$OTHER_URL`, which can lead to unexpected behavior when using URL reversing. Pick a unique name for each path.
  </Accordion>
</AccordionGroup>
