__init__.py 503 B

1234567891011
  1. """Linter module for OpenHands.
  2. Part of this Linter module is adapted from Aider (Apache 2.0 License, [original
  3. code](https://github.com/paul-gauthier/aider/blob/main/aider/linter.py)).
  4. - Please see the [original repository](https://github.com/paul-gauthier/aider) for more information.
  5. - The detailed implementation of the linter can be found at: https://github.com/All-Hands-AI/openhands-aci.
  6. """
  7. from openhands_aci.linter import DefaultLinter, LintResult
  8. __all__ = ['DefaultLinter', 'LintResult']