Files
prplMesh/pyproject.toml
Raphaël Mélotte 4430baddb9 pyproject: isort: sort import alphabetically within sections
By default, isort doesn't sort alphabetically within each
section. Make it do so, and fix the existing imports in
'tools/deploy_firmware.py' and in 'tools/device/turris_rdk_b.py'.

Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be>
2022-03-16 16:21:30 +01:00

25 lines
752 B
TOML

###############################################################
# SPDX-License-Identifier: BSD-2-Clause-Patent
# SPDX-FileCopyrightText: 2022 the prplMesh contributors (see AUTHORS.md)
# This code is subject to the terms of the BSD+Patent license.
# See LICENSE file for more details.
###############################################################
[tool.isort]
skip_gitignore = true
import_heading_future = "Future"
import_heading_stdlib = "Standard library"
import_heading_thirdparty = "Third party"
import_heading_firstparty = "First party"
import_heading_localfolder = "Local folder"
force_alphabetical_sort_within_sections = true
[tool.pylint.messages_control]
max-line-length = 100
# Keep only warnings and errors:
disable = [
"C",
"R",
]