In 4.0.0 we have once again changed how this works and we removed support for user-level config files.
flake8 - Configuration File Management
flake8는 3.x까지 유저의 홈 디렉토리나 xdg config 폴더에서 유저레벨 설정파일을 쓸 수 있었는데요 (~/.flake8, ~/.config/flake8)
4.0부터는 해당 내용이 없어졌습니다.
flake8 --append-config ~/.config/flake8
임시조치로는 append-config 옵션을 활용할 수 있을 것 같고요, 프로젝트별 flake8 설정파일을 만들어서 관리하는 게 제일 깔끔해 보입니다
참고
- https://stackoverflow.com/questions/28436382/flake8-not-picking-up-config-file
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[Jupyter Notebook] 탭 없이 자동완성 하는법 (jupyter_contrib_nbextensions) (0) | 2022.08.05 |
---|---|
[Python] m1 mac에서 homebrew로 conda 설치 및 jupyter 세팅 (0) | 2022.08.04 |
[django] primary key 필드 int -> uuid 마이그레이션 방법 (2) | 2021.10.10 |
[django] 쉘 이용해 앱 초기화하는 방법 (0) | 2021.10.09 |
[Python] Expected type X, got Type[X] instead (0) | 2021.09.10 |