common/y*: add Korean translation (#14521)

This commit is contained in:
코드싸이
2024-11-02 02:57:18 +09:00
committed by GitHub
parent 44f4f2b76d
commit 1dfe11f879
42 changed files with 841 additions and 0 deletions

16
pages.ko/common/yapf.md Normal file
View File

@@ -0,0 +1,16 @@
# yapf
> Python 스타일 가이드 검사기.
> 더 많은 정보: <https://github.com/google/yapf>.
- 변경 사항을 적용하지 않고 변경 사항의 차이를 표시 (드라이런):
`yapf --diff {{경로/대상/파일}}`
- 파일을 제자리에서 포맷하고 변경 사항의 차이를 표시:
`yapf --diff --in-place {{경로/대상/파일}}`
- 디렉토리 내의 모든 Python 파일을 재귀적으로 동시에 포맷:
`yapf --recursive --in-place --style {{pep8}} --parallel {{경로/대상/폴더}}`