__init__.py 429 B

123456789
  1. """Linter module for OpenHands.
  2. Part of this Linter module is adapted from Aider (Apache 2.0 License, [original code](https://github.com/paul-gauthier/aider/blob/main/aider/linter.py)). Please see the [original repository](https://github.com/paul-gauthier/aider) for more information.
  3. """
  4. from openhands.linter.base import LintResult
  5. from openhands.linter.linter import DefaultLinter
  6. __all__ = ['DefaultLinter', 'LintResult']