Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed May 30, 2024
1 parent 838dc55 commit efbf2bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .automation/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2721,7 +2721,9 @@ def generate_json_schema_enums():
x["descriptor_id"] for x in descriptors
].sort()
json_schema["definitions"]["enum_descriptor_keys"]["enum"] += ["CREDENTIALS", "GIT"]
json_schema["definitions"]["enum_linter_keys"]["enum"] = [x.name for x in linters].sort()
json_schema["definitions"]["enum_linter_keys"]["enum"] = [
x.name for x in linters
].sort()
# Deprecated linters
json_schema["definitions"]["enum_linter_keys"]["enum"] += DEPRECATED_LINTERS
with open(CONFIG_JSON_SCHEMA, "w", encoding="utf-8") as outfile:
Expand Down

0 comments on commit efbf2bd

Please sign in to comment.