소스 검색
chore(sider): add sider default config for flake8 + ignore tab errors (W191) (#12587)
version-14
Mohammad Hasnain Mohsin Rajan
4 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
2개의 변경된 파일과
35개의 추가작업 그리고
0개의 파일을 삭제
-
.flake8
-
sider.yml
|
|
@@ -0,0 +1,32 @@ |
|
|
|
[flake8] |
|
|
|
ignore = |
|
|
|
E121, |
|
|
|
E126, |
|
|
|
E127, |
|
|
|
E128, |
|
|
|
E203, |
|
|
|
E225, |
|
|
|
E226, |
|
|
|
E231, |
|
|
|
E241, |
|
|
|
E251, |
|
|
|
E261, |
|
|
|
E265, |
|
|
|
E302, |
|
|
|
E303, |
|
|
|
E305, |
|
|
|
E402, |
|
|
|
E501, |
|
|
|
E741, |
|
|
|
W291, |
|
|
|
W292, |
|
|
|
W293, |
|
|
|
W391, |
|
|
|
W503, |
|
|
|
W504, |
|
|
|
F403, |
|
|
|
B007, |
|
|
|
B950, |
|
|
|
W191, |
|
|
|
|
|
|
|
max-line-length = 200 |
|
|
@@ -0,0 +1,3 @@ |
|
|
|
linter: |
|
|
|
flake8: |
|
|
|
config: .flake8 |