py*: add Korean translation (#14559)

This commit is contained in:
코드싸이
2024-11-02 16:14:48 +09:00
committed by GitHub
parent b6bf0c2f48
commit bdbac0857c
17 changed files with 405 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# pyflakes
> Python 소스 코드 파일에서 오류를 검사.
> 더 많은 정보: <https://pypi.org/project/pyflakes>.
- 단일 Python 파일 검사:
`pyflakes check {{경로/대상/파일.py}}`
- 특정 폴더 내 Python 파일 검사:
`pyflakes checkPath {{경로/대상/폴더}}`
- 폴더 내의 Python 파일을 재귀적으로 검사:
`pyflakes checkRecursive {{경로/대상/폴더}}`
- 여러 폴더에서 발견된 모든 Python 파일 검사:
`pyflakes iterSourceCode {{경로/대상/폴더_1}} {{경로/대상/폴더_2}}`