Remove isort configuration
Is replaced by ruff
This commit is contained in:
parent
ee31311db7
commit
6e66da4045
2 changed files with 18 additions and 11 deletions
10
.isort.cfg
10
.isort.cfg
|
|
@ -1,10 +0,0 @@
|
||||||
[settings]
|
|
||||||
include_trailing_comma = true
|
|
||||||
line_length = 88
|
|
||||||
multi_line_output = 3
|
|
||||||
skip = env/, venv/
|
|
||||||
default_section = THIRDPARTY
|
|
||||||
known_first_party = transip_client
|
|
||||||
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|
|
||||||
lines_between_types=1
|
|
||||||
lines_after_imports=2
|
|
||||||
|
|
@ -14,7 +14,7 @@ dependencies = [
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
development = [
|
development = [
|
||||||
"ruff>=0.8.6",
|
'ruff>=0.8.6',
|
||||||
]
|
]
|
||||||
|
|
||||||
ci = ['coverage>=5.3.1']
|
ci = ['coverage>=5.3.1']
|
||||||
|
|
@ -29,3 +29,20 @@ transip-listen = 'transip_client.cli:run'
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ['setuptools']
|
requires = ['setuptools']
|
||||||
build-backend = 'setuptools.build_meta'
|
build-backend = 'setuptools.build_meta'
|
||||||
|
|
||||||
|
[tool.uv]
|
||||||
|
environments = ["sys_platform == 'linux'"]
|
||||||
|
|
||||||
|
[tool.ruff.lint.isort]
|
||||||
|
lines-between-types=1
|
||||||
|
lines-after-imports=2
|
||||||
|
|
||||||
|
default-section = 'third-party'
|
||||||
|
known-first-party = ['transip_client']
|
||||||
|
section-order = [
|
||||||
|
'future',
|
||||||
|
'standard-library',
|
||||||
|
'third-party',
|
||||||
|
'first-party',
|
||||||
|
'local-folder',
|
||||||
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue