Python 코드 관리하기 linter : 나중에 버그가 될 수 있는 사항을 찾아줌 e.g.Flake8 formatting : 규약에 맞게 포맷팅 해줌 e.g. black, isort 1. 프로젝트 가상환경 실행해서 다운로드 pip install flake8 black isort 2. Linter: 루트 디렉터리에 .flake8 파일 생성 # .flake8 [flake8] max-line-length = 88 #pep8 extend-ignore = E203 exclude = .git, __pycache__, build, dist, venv 3. Formatter :루트 디렉토리에 pyproject.toml 파일 생성해서 포맷팅 할 black, isort 입력 # pyproject.toml [tool.bl..