diff --git a/.linkml-linter.yaml b/.linkml-linter.yaml new file mode 100644 index 0000000..1dcffad --- /dev/null +++ b/.linkml-linter.yaml @@ -0,0 +1,3 @@ +rules: + permissible_values_format: + format: '^[a-zA-Z0-9_\-:]+$' diff --git a/justfile b/justfile index e5dc1e3..ee4f396 100644 --- a/justfile +++ b/justfile @@ -84,7 +84,7 @@ test: _test-schema _test-python _test-examples # Run linting [group('model development')] lint: - uv run linkml-lint {{source_schema_dir}} + uv run linkml-lint --config .linkml-linter.yaml {{source_schema_dir}} # Generate md documentation for the schema and add artifacts [group('model development')]