Add formatters, utils, schemas and version
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.8) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / build-package (push) Has been cancelled

This commit is contained in:
2026-01-29 10:50:35 +00:00
parent d9e02a553c
commit 6b37d0d1d7

View File

@@ -0,0 +1,13 @@
"""JSON Schema definitions for ConfigForge."""
from typing import Dict, Any
BASE_SCHEMA: Dict[str, Any] = {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ConfigForge Base Schema",
"type": "object",
"properties": {},
"additionalProperties": False,
}
__all__ = ["BASE_SCHEMA"]