You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
entry: python3 -c "import pathlib,sys; bad=[]; paths=[p for p in pathlib.Path('.').rglob('*') if p.is_file() and '.git' not in p.parts and p.suffix in {'.py','.md','.yml','.yaml','.sh','.ps1','.txt'}];\nfor p in paths:\n lines=p.read_text(errors='ignore').splitlines();\n bad += [f'{p}:{i}' for i,l in enumerate(lines,1) if l.rstrip()!=l];\nprint('\\n'.join(bad)); sys.exit(bool(bad))"