nolo 0.1.1

A CLI tool for discovering and analyzing `TODO` comments across codebases.
Documentation
#!/usr/bin/env python3

def main():
    # TODO: Add proper logging
    print("Hello world")
    
    # FIXME: Remove debug print
    print("debug")
    
    # NOTE: This should be configurable
    data = [1, 2, 3]
    
    # HACK: Hardcoded for now
    process_data(data)
    # BUG: Doesn't validate input

# TODO: Add type hints
def process_data(data):
    for item in data:
        print(item)

if __name__ == "__main__":
    main()