We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac816f commit 0d32cc1Copy full SHA for 0d32cc1
authors/singlestore.toml
@@ -1,3 +1,4 @@
1
name="SingleStore"
2
description="Engineering Team"
3
logo="singlestore"
4
+external=false
resources/author-check.py
@@ -21,6 +21,9 @@ def check_author(author_path):
21
if 'description' not in meta:
22
error(f'No `description` in `meta` section of {author_path}')
23
24
+ if 'external' not in meta:
25
+ error(f'No `external` in `meta` section of {author_path}')
26
+
27
# Logo is optional, but if defined a corresponding image must exist
28
if 'logo' in meta:
29
logo_id = meta['logo']
0 commit comments