소스 검색

style(linting): increase max-line-length to 176

The max-line-length configuration was increased to 176 in both .flake8 and pyproject.toml files to allow for longer lines of code.
master
lanvent 1 년 전
부모
커밋
eaf4e9174f
2개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      .flake8
  2. +8
    -0
      pyproject.toml

+ 1
- 1
.flake8 파일 보기

@@ -1,5 +1,5 @@
[flake8]
max-line-length = 88
max-line-length = 176
select = E303,W293,W291,W292,E305,E231,E302
exclude =
.tox,


+ 8
- 0
pyproject.toml 파일 보기

@@ -0,0 +1,8 @@
[tool.black]
line-length = 176
target-version = ['py37']
include = '\.pyi?$'
extend-exclude = '.+/(dist|.venv|venv|build|lib)/.+'

[tool.isort]
profile = "black"

Loading…
취소
저장