AST-aware, stdlib-only static checks: swallowed-exception-around-write (C1), undefined-name (C2), hardcoded-secret-literal (C3), fail-open-flag (C4), rotated-secret-captured-once (C5). Tests + CI + examples included. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
5 lines
83 B
Python
5 lines
83 B
Python
import sys
|
|
from .core import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|