in hack/verify_boilerplate.py [0:0]
def normalize_files(files):
newfiles = []
for pathname in files:
if any(x in pathname for x in ARGS.skip):
continue
newfiles.append(pathname)
for idx, pathname in enumerate(newfiles):
if not os.path.isabs(pathname):
newfiles[idx] = os.path.join(ARGS.rootdir, pathname)
return newfiles