mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
42 lines
724 B
TOML
42 lines
724 B
TOML
[tool.black]
|
|
line_length = 130
|
|
target_version = ["py37"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
combine_as_imports = true
|
|
line_length = 130
|
|
extra_standard_library = [
|
|
"typing_extensions",
|
|
"_typeshed",
|
|
# Extra modules not recognized by isort
|
|
"_compression",
|
|
"_csv",
|
|
"_curses",
|
|
"_markupbase",
|
|
"_random",
|
|
"_tkinter",
|
|
"_weakrefset",
|
|
"genericpath",
|
|
"opcode",
|
|
"pyexpat",
|
|
# Python 2 modules
|
|
"__builtin__",
|
|
"cookielib",
|
|
"cStringIO",
|
|
"httplib",
|
|
"mimetools",
|
|
"rfc822",
|
|
"thread",
|
|
"urllib2",
|
|
"urlparse",
|
|
"BaseHTTPServer",
|
|
"Queue",
|
|
"SimpleHTTPServer",
|
|
"SocketServer",
|
|
"StringIO",
|
|
"UserDict",
|
|
"UserList",
|
|
"UserString",
|
|
]
|