#!/usr/bin/env python3
import sys

with open("ascentlint.cmd", "w") as f:
    f.write(" ".join(sys.argv[1:]) + "\n")

with open("ascentlint.log", "w") as f:
    f.write("No lint violations found\n")
