mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Increase example name in manifest to 255 chars
This commit is contained in:
@ -141,7 +141,7 @@ class ExampleSchema(StrictSchema):
|
|||||||
name = fields.Str(
|
name = fields.Str(
|
||||||
required=True,
|
required=True,
|
||||||
validate=[
|
validate=[
|
||||||
validate.Length(min=1, max=100),
|
validate.Length(min=1, max=255),
|
||||||
validate.Regexp(
|
validate.Regexp(
|
||||||
r"^[a-zA-Z\d\-\_/]+$", error="Only [a-zA-Z0-9-_/] chars are allowed"
|
r"^[a-zA-Z\d\-\_/]+$", error="Only [a-zA-Z0-9-_/] chars are allowed"
|
||||||
),
|
),
|
||||||
|
Reference in New Issue
Block a user