From 5feeb9de15fc426ac754d1449cdf4ae633bef38f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org> Date: Tue, 17 Aug 2021 08:29:37 +0200 Subject: [PATCH] STY: fix line length --- proto/caosdb/entity/v1alpha1/main.proto | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/proto/caosdb/entity/v1alpha1/main.proto b/proto/caosdb/entity/v1alpha1/main.proto index 5c998ca..a0c3e75 100644 --- a/proto/caosdb/entity/v1alpha1/main.proto +++ b/proto/caosdb/entity/v1alpha1/main.proto @@ -462,13 +462,20 @@ message Hash { enum Importance { // The importance is unset/unknown. IMPORTANCE_UNSPECIFIED = 0; - // The property is obligatory for children of this entity. The server will flag an error when an obligatory property of a parent is missing during updates or insertions of a child entity. It says: "YOU MUST!" + // The property is obligatory for children of this entity. The server will + // flag an error when an obligatory property of a parent is missing during + // updates or insertions of a child entity. It says: "YOU MUST!" IMPORTANCE_OBLIGATORY = 1; - // The property is recommended for children of this entity. The server will flag a warning when a recommended property of a parent is missing during updates or insertions of a child entity. It says: "YOU SHOULD!" + // The property is recommended for children of this entity. The server will + // flag a warning when a recommended property of a parent is missing during + // updates or insertions of a child entity. It says: "YOU SHOULD!" IMPORTANCE_RECOMMENDED = 2; - // The property is merely suggested for children of this entity. It says: "YOU MAY WANT TO?" + // The property is merely suggested for children of this entity. It says: + // "YOU MAY WANT TO?" IMPORTANCE_SUGGESTED = 3; - // The property is fix and child entities should not add this property to themselves (This is a bit like static in object-oriented programming languages). It says: "KINDLY IGNORE THIS ONE FOR CHILDREN OF THIS ENTITY" + // The property is fix and child entities should not add this property to + // themselves (This is a bit like static in object-oriented programming + // languages). It says: "KINDLY IGNORE THIS ONE FOR CHILDREN OF THIS ENTITY" IMPORTANCE_FIX = 4; } -- GitLab