mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
12 lines
503 B
Python
12 lines
503 B
Python
"""Linter module for OpenHands.
|
|
|
|
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.
|
|
- The detailed implementation of the linter can be found at: https://github.com/All-Hands-AI/openhands-aci.
|
|
"""
|
|
|
|
from openhands_aci.linter import DefaultLinter, LintResult
|
|
|
|
__all__ = ['DefaultLinter', 'LintResult']
|