mirror of
https://github.com/python-poetry/install.python-poetry.org.git
synced 2024-11-09 15:33:37 -05:00
19 lines
636 B
INI
19 lines
636 B
INI
[flake8]
|
|
min_python_version = 3.6.0
|
|
max-line-length = 120
|
|
ban-relative-imports = true
|
|
# flake8-use-fstring: https://github.com/MichaelKim0407/flake8-use-fstring#--percent-greedy-and---format-greedy
|
|
format-greedy = 0
|
|
inline-quotes = double
|
|
enable-extensions = TC, TC1
|
|
type-checking-exempt-modules = typing, typing-extensions
|
|
eradicate-whitelist-extend = ^-.*;
|
|
extend-ignore =
|
|
# E203: Whitespace before ':' (pycqa/pycodestyle#373)
|
|
E203,
|
|
# SIM106: Handle error-cases first
|
|
SIM106,
|
|
# ANN101: Missing type annotation for self in method
|
|
ANN101,
|
|
# ANN102: Missing type annotation for cls in classmethod
|
|
ANN102,
|