mirror of
https://gitlab.com/prpl-foundation/prplmesh/prplMesh.git
synced 2025-12-20 01:21:22 +08:00
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>
25 lines
752 B
TOML
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",
|
|
]
|