일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- conf
- ProxyServer
- pyenv
- 유닉스의탄생
- opensouce
- restfulapi
- 독후감
- maxlinelength
- organizeImports
- 규칙없음
- 글쓰기가필요하지않은인생은없다
- pep8
- Lint
- typevar
- codewars
- python
- goalng
- flake8
- 코로나백신
- springboot
- 조엘온소프트웨어
- printer_helper
- loadimpact
- codewar
- vscode
- Algorithm
- httppretty
- GlobalInterprintLock
- Golang
- 오큘러스퀘스트2
- Today
- Total
목록flake8 (2)
일상적 이야기들.
(venv) [~/Public/leetcode]$ flake8 97_Interleaving\ String.py 97_Interleaving String.py:7:58: E203 whitespace before ':' 97_Interleaving String.py:10:62: E203 whitespace before ':' 97_Interleaving String.py:45:80: E501 line too long (111 > 79 characters) 97_Interleaving String.py:46:80: E501 line too long (111 > 79 characters) 97_Interleaving String.py:47:80: E501 line too long (211 > 79 charact..
Python을 이용하는 많은 이들이 intelliJ나 pycharm을 많이 쓰고 있다. 그러나 IDE에 굳이 종속적으로 작업을 진행해야하나 싶기도 하고 비싼 돈을 주고 라이센스를 이용하기도 싫고, 사용하지 않는 기능들이 덕지덕지 붙어있는 것들이 싫어서 vscode를 사용하고 있다. 다른 언어를 사용할 때에도, 굳이 또 IDE를 설치할 필요없는 간편한 vscode ! 그러나 홀로 vscode를 사용하다 보니, 팀원들과의 코드 인벤션이 맞지 않아 많은 고생을 하였다. 기본적으로 PEP8을 따르고 있는데, vscode의 기본인 pylint는 먼가 어설프게 pep8을 지켜주고 있었다. 그렇기에 대안으로 삼은 것이 다음과 같다. Pycodestyle pycodestyle은 vscode에서 pep8이라고 적혀있듯이..