| Report Summary | Show by files | Show by rules |
1 2 3 4 5 6 7 8 9 10 |
""" Ciqar is a tool for creating reports from different code quality analyzers output. """ __version__ = "0.1.0" def main() -> None: from ciqar.application import CiqarApplication application = CiqarApplication() application.run() |