-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce the idea of syntax sugar lint rules
Signed-off-by: Juan Cruz Viotti <[email protected]>
- Loading branch information
Showing
14 changed files
with
804 additions
and
295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
class TypeBooleanAsEnum final : public Rule { | ||
public: | ||
TypeBooleanAsEnum() | ||
: Rule{"type_boolean_as_enum", | ||
"Setting `type` to `boolean` is syntax sugar for an enumeration " | ||
"of two values: `false` and `true`"} {}; | ||
|
||
[[nodiscard]] auto | ||
condition(const sourcemeta::jsontoolkit::JSON &schema, const std::string &, | ||
const std::set<std::string> &vocabularies, | ||
const sourcemeta::jsontoolkit::Pointer &) const -> bool override { | ||
return contains_any( | ||
vocabularies, | ||
{"https://json-schema.org/draft/2020-12/vocab/validation", | ||
"https://json-schema.org/draft/2019-09/vocab/validation", | ||
"http://json-schema.org/draft-07/schema#", | ||
"http://json-schema.org/draft-06/schema#", | ||
"http://json-schema.org/draft-04/schema#", | ||
"http://json-schema.org/draft-03/schema#", | ||
"http://json-schema.org/draft-02/hyper-schema#", | ||
"http://json-schema.org/draft-01/hyper-schema#"}) && | ||
schema.is_object() && schema.defines("type") && | ||
schema.at("type").is_string() && | ||
schema.at("type").to_string() == "boolean" && | ||
!schema.defines("enum") && !schema.defines("const"); | ||
} | ||
|
||
auto transform(Transformer &transformer) const -> void override { | ||
auto choices = sourcemeta::jsontoolkit::JSON::make_array(); | ||
choices.push_back(sourcemeta::jsontoolkit::JSON{false}); | ||
choices.push_back(sourcemeta::jsontoolkit::JSON{true}); | ||
transformer.assign("enum", choices); | ||
transformer.erase("type"); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.