mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00

A new Linter subclass - 'Directory' has been created and integrated into the linting process to handle directory naming conventions, specifically for MacOS. MacOS has issues when signing and notarizing directories with '.' in their names. The new class will trigger an 'Error' level diagnostic if this convention is violated. The linter will become a required check with this update, as its new check configuration was added to '.printer-linter'. The version number in 'pyproject.toml' was also incremented to reflect these changes. Contributes to CURA-11014
17 lines
339 B
TOML
17 lines
339 B
TOML
[project]
|
|
name = "printerlinter"
|
|
description = "Cura UltiMaker printer linting tool"
|
|
version = "0.1.1"
|
|
authors = [
|
|
{ name = "UltiMaker", email = "cura@ultimaker.com" }
|
|
]
|
|
dependencies = [
|
|
"pyyaml"
|
|
]
|
|
|
|
[project.scripts]
|
|
printer-linter = "terminal:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta" |