pylyzer/docs/source/options.md
Shunsuke Shibayama 691b10961e Add options.md
2022-12-26 16:57:16 +09:00

399 B

command line options

--server

Launch as a language server.

--dump-decl

Dump a type declarations file (d.er) after type checking.

$ pylyzer --dump-decl test.py
Start checking: test.py
All checks OK: test.py

$ ls
test.py  test.d.er

-c/--code

Check code from the command line.

$ pylyzer -c "print('hello world')"
Start checking: string
All checks OK: string